react-native-tvos 0.79.2-0 → 0.80.0-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Alert/Alert.d.ts +4 -1
- package/Libraries/Alert/Alert.js +3 -0
- package/Libraries/Alert/RCTAlertManager.js +17 -0
- package/Libraries/Animated/Animated.js.flow +1 -3
- package/Libraries/Animated/AnimatedEvent.js +4 -3
- package/Libraries/Animated/AnimatedExports.js +2 -2
- package/Libraries/Animated/AnimatedExports.js.flow +140 -0
- package/Libraries/Animated/AnimatedImplementation.js +2 -123
- package/Libraries/Animated/Easing.js +13 -15
- package/Libraries/Animated/animations/Animation.js +8 -4
- package/Libraries/Animated/components/AnimatedFlatList.js +7 -6
- package/Libraries/Animated/components/AnimatedScrollView.js +48 -42
- package/Libraries/Animated/components/AnimatedSectionList.js +11 -7
- package/Libraries/Animated/createAnimatedComponent.js +105 -57
- package/Libraries/Animated/nodes/AnimatedNode.js +4 -3
- package/Libraries/Animated/nodes/AnimatedProps.js +46 -26
- package/Libraries/Animated/nodes/AnimatedValue.js +16 -7
- package/Libraries/Animated/nodes/AnimatedValueXY.js +3 -1
- package/Libraries/AppDelegate/RCTAppSetupUtils.h +2 -0
- package/Libraries/AppDelegate/RCTAppSetupUtils.mm +6 -0
- package/Libraries/AppDelegate/RCTArchConfiguratorProtocol.h +4 -4
- package/Libraries/AppDelegate/RCTDefaultReactNativeFactoryDelegate.mm +6 -5
- package/Libraries/AppDelegate/RCTDependencyProvider.h +2 -0
- package/Libraries/AppDelegate/RCTReactNativeFactory.h +4 -0
- package/Libraries/AppDelegate/RCTReactNativeFactory.mm +54 -40
- package/Libraries/AppDelegate/RCTRootViewFactory.h +9 -0
- package/Libraries/AppDelegate/RCTRootViewFactory.mm +14 -6
- package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +2 -11
- package/Libraries/AppState/AppState.js +7 -2
- package/Libraries/BatchedBridge/MessageQueue.js +2 -2
- package/Libraries/BatchedBridge/NativeModules.js +2 -0
- package/Libraries/Blob/BlobManager.js +1 -0
- package/Libraries/Blob/FileReader.js +219 -8
- package/Libraries/Blob/RCTBlobCollector.mm +1 -1
- package/Libraries/Blob/RCTBlobManager.h +0 -4
- package/Libraries/Blob/RCTBlobManager.mm +4 -21
- package/Libraries/Blob/RCTFileReaderModule.mm +2 -2
- package/Libraries/Blob/React-RCTBlob.podspec +4 -14
- package/Libraries/Blob/URL.js +24 -11
- package/Libraries/Blob/URLSearchParams.js +106 -31
- package/Libraries/Blob/URLSearchParams.js.flow +12 -7
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +1 -1
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.js +17 -0
- package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +1 -0
- package/Libraries/Components/Button.js +1 -1
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +1 -3
- package/Libraries/{NewAppScreen/components/Colors.js → Components/DrawerAndroid/DrawerLayoutAndroid.ios.js} +6 -10
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +6 -66
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js.flow +18 -0
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidFallback.js +71 -0
- package/Libraries/Components/Keyboard/Keyboard.js +5 -3
- package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +6 -3
- package/Libraries/Components/Pressable/Pressable.js +23 -7
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +25 -3
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidTypes.js +29 -20
- package/Libraries/Components/RefreshControl/RefreshControl.js +1 -1
- package/Libraries/Components/ScrollView/ScrollView.d.ts +3 -3
- package/Libraries/Components/ScrollView/ScrollView.js +132 -122
- package/Libraries/Components/StaticRenderer.js +1 -1
- package/Libraries/Components/Switch/Switch.d.ts +3 -0
- package/Libraries/Components/Switch/Switch.js +8 -4
- package/Libraries/Components/TV/TVEventControl.js +3 -1
- package/Libraries/Components/TV/TVEventHandler.js +21 -13
- package/Libraries/Components/TV/TVFocusEventHandler.js +1 -1
- package/Libraries/Components/TV/TVFocusGuideView.js +3 -8
- package/Libraries/Components/TV/tagForComponentOrHandle.js +2 -2
- package/Libraries/Components/TV/useTVEventHandler.js +1 -1
- package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +2 -13
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +2 -4
- package/Libraries/Components/TextInput/TextInput.d.ts +76 -33
- package/Libraries/Components/TextInput/TextInput.flow.js +106 -55
- package/Libraries/Components/TextInput/TextInput.js +94 -1029
- package/Libraries/Components/TextInput/TextInputState.js +1 -1
- package/Libraries/{Modal/ModalInjection.js → Components/ToastAndroid/ToastAndroid.ios.js} +3 -5
- package/Libraries/Components/ToastAndroid/ToastAndroid.js +4 -32
- package/Libraries/Components/ToastAndroid/ToastAndroid.js.flow +109 -0
- package/Libraries/Components/ToastAndroid/ToastAndroidFallback.js +45 -0
- package/Libraries/Components/Touchable/Touchable.js +5 -5
- package/Libraries/Components/Touchable/TouchableBounce.js +14 -7
- package/Libraries/Components/Touchable/TouchableHighlight.js +14 -10
- package/Libraries/Components/Touchable/TouchableNativeFeedback.js +6 -6
- package/Libraries/Components/Touchable/TouchableOpacity.js +14 -7
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +1 -1
- package/Libraries/Components/View/View.js +21 -23
- package/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
- package/Libraries/Components/View/ViewAccessibility.js +25 -1
- package/Libraries/Components/View/ViewNativeComponent.js +2 -2
- package/Libraries/Components/View/ViewPropTypes.d.ts +16 -0
- package/Libraries/Components/View/ViewPropTypes.js +49 -3
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/setUpReactDevTools.js +5 -5
- package/Libraries/Debugging/DebuggingOverlayRegistry.js +3 -3
- package/Libraries/EventEmitter/NativeEventEmitter.js +9 -4
- package/Libraries/Image/AssetSourceResolver.js +17 -4
- package/Libraries/Image/Image.d.ts +26 -10
- package/Libraries/Image/Image.js +17 -0
- package/Libraries/Image/Image.js.flow +5 -5
- package/Libraries/Image/ImageBackground.js +2 -0
- package/Libraries/Image/ImageInjection.js +1 -1
- package/Libraries/Image/ImageProps.js +22 -17
- package/Libraries/Image/ImageSource.js +3 -1
- package/Libraries/Image/ImageSourceUtils.js +4 -2
- package/Libraries/Image/ImageTypes.flow.js +1 -1
- package/Libraries/Image/RCTImageLoader.mm +63 -19
- package/Libraries/Image/RCTImageStoreManager.mm +10 -32
- package/Libraries/Image/RCTImageURLLoader.h +19 -1
- package/Libraries/Image/RCTUIImageViewAnimated.mm +6 -23
- package/Libraries/Image/React-RCTImage.podspec +2 -7
- package/Libraries/Interaction/InteractionManager.d.ts +13 -0
- package/Libraries/Interaction/InteractionManager.js +1 -1
- package/Libraries/Interaction/PanResponder.js +3 -3
- package/Libraries/Interaction/TaskQueue.js +1 -0
- package/Libraries/LayoutAnimation/LayoutAnimation.js +2 -2
- package/Libraries/Linking/Linking.js +1 -1
- package/Libraries/LinkingIOS/React-RCTLinking.podspec +1 -6
- package/Libraries/Lists/FlatList.d.ts +2 -2
- package/Libraries/Lists/FlatList.js +8 -11
- package/Libraries/Lists/SectionList.js +39 -42
- package/Libraries/Lists/SectionListModern.js +25 -34
- package/Libraries/Lists/VirtualizedList.js +1 -0
- package/Libraries/Lists/VirtualizedSectionList.js +1 -0
- package/Libraries/LogBox/Data/LogBoxData.js +1 -1
- package/Libraries/LogBox/LogBoxNotificationContainer.js +1 -1
- package/Libraries/Modal/Modal.js +33 -7
- package/Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.mm +118 -124
- package/Libraries/NativeAnimation/React-RCTAnimation.podspec +4 -7
- package/Libraries/NativeComponent/BaseViewConfig.android.js +8 -6
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +2 -0
- package/Libraries/NativeComponent/BaseViewConfig.js +17 -0
- package/Libraries/NativeComponent/PlatformBaseViewConfig.js +2 -2
- package/Libraries/NativeModules/specs/NativeDevMenu.js +2 -2
- package/Libraries/Network/RCTDataRequestHandler.mm +10 -6
- package/Libraries/Network/RCTFileRequestHandler.mm +11 -7
- package/Libraries/Network/RCTHTTPRequestHandler.mm +1 -2
- package/Libraries/Network/RCTInspectorNetworkReporter.h +32 -0
- package/Libraries/Network/RCTInspectorNetworkReporter.mm +88 -0
- package/Libraries/Network/RCTNetworking.android.js +1 -1
- package/Libraries/Network/RCTNetworking.h +0 -4
- package/Libraries/Network/RCTNetworking.ios.js +1 -1
- package/Libraries/Network/RCTNetworking.js +17 -0
- package/Libraries/Network/RCTNetworking.js.flow +1 -1
- package/Libraries/Network/RCTNetworking.mm +32 -33
- package/Libraries/Network/React-RCTNetwork.podspec +6 -7
- package/Libraries/Network/XMLHttpRequest.js +781 -10
- package/Libraries/Performance/Systrace.js +7 -7
- package/Libraries/Pressability/Pressability.js +1 -1
- package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -6
- package/Libraries/ReactNative/AppContainer-dev.js +10 -9
- package/Libraries/ReactNative/AppRegistry.flow.js +49 -0
- package/Libraries/ReactNative/AppRegistry.js +2 -322
- package/Libraries/ReactNative/AppRegistry.js.flow +23 -0
- package/Libraries/ReactNative/AppRegistryImpl.js +316 -0
- package/Libraries/ReactNative/FabricUIManager.js +10 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +2 -4
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +1 -4
- package/Libraries/ReactNative/RendererImplementation.js +10 -5
- package/Libraries/ReactNative/getNativeComponentAttributes.js +1 -0
- package/Libraries/ReactNative/renderApplication.js +9 -0
- package/Libraries/ReactNativeDependencies/Package.swift +2 -2
- package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +3 -3
- package/Libraries/ReactPrivate/ReactNativePrivateInterface.js.flow +51 -0
- package/Libraries/Renderer/implementations/ReactFabric-dev.js +4840 -4748
- package/Libraries/Renderer/implementations/ReactFabric-prod.js +4947 -4829
- package/Libraries/Renderer/implementations/ReactFabric-profiling.js +3998 -3888
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +5005 -4948
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +2744 -2652
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +5020 -4933
- package/Libraries/Renderer/shims/ReactNativeTypes.js +3 -3
- package/Libraries/Settings/React-RCTSettings.podspec +3 -7
- package/Libraries/Settings/Settings.ios.js +1 -0
- package/Libraries/Settings/Settings.js +13 -19
- package/Libraries/Settings/SettingsFallback.js +33 -0
- package/Libraries/StyleSheet/PlatformColorValueTypes.js +15 -0
- package/Libraries/StyleSheet/PlatformColorValueTypesIOS.js +6 -0
- package/Libraries/StyleSheet/Rect.js +1 -0
- package/Libraries/StyleSheet/StyleSheet.js +31 -200
- package/Libraries/StyleSheet/StyleSheet.js.flow +188 -0
- package/Libraries/StyleSheet/StyleSheetExports.js +210 -0
- package/Libraries/StyleSheet/StyleSheetExports.js.flow +112 -0
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +1 -1
- package/Libraries/StyleSheet/StyleSheetTypes.js +130 -52
- package/Libraries/StyleSheet/flattenStyle.js +14 -4
- package/Libraries/StyleSheet/private/_TransformStyle.js +49 -21
- package/Libraries/StyleSheet/processBackgroundImage.js +670 -214
- package/Libraries/Text/Text/RCTDynamicTypeRamp.mm +1 -1
- package/Libraries/Text/Text.d.ts +2 -5
- package/Libraries/Text/Text.js +3 -3
- package/Libraries/Text/TextInput/Multiline/RCTUITextView.mm +11 -0
- package/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.mm +96 -0
- package/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h +1 -0
- package/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm +4 -4
- package/Libraries/Text/TextInput/Singleline/RCTUITextField.mm +11 -0
- package/Libraries/Text/TextNativeComponent.js +0 -4
- package/Libraries/Text/TextProps.js +5 -33
- package/Libraries/Types/CodegenTypesNamespace.d.ts +45 -0
- package/Libraries/{Blob/__mocks__/BlobModule.js → Types/CodegenTypesNamespace.js} +4 -6
- package/Libraries/Types/CoreEventTypes.d.ts +10 -1
- package/Libraries/Types/CoreEventTypes.js +4 -6
- package/Libraries/Utilities/Appearance.js +2 -0
- package/Libraries/Utilities/BackHandler.ios.js +9 -4
- package/Libraries/Utilities/BackHandler.js +17 -0
- package/Libraries/Utilities/DeviceInfo.js +2 -0
- package/Libraries/Utilities/Dimensions.js +1 -1
- package/Libraries/Utilities/Platform.js +17 -0
- package/Libraries/Utilities/PlatformTypes.js +11 -3
- package/Libraries/Utilities/ReactNativeTestTools.js +2 -2
- package/Libraries/Utilities/codegenNativeCommands.d.ts +18 -0
- package/Libraries/Utilities/codegenNativeComponent.d.ts +26 -0
- package/Libraries/Utilities/setAndForwardRef.js +6 -6
- package/Libraries/Vibration/React-RCTVibration.podspec +3 -7
- package/Libraries/WebSocket/WebSocket.js +313 -8
- package/Libraries/vendor/core/ErrorUtils.js +28 -2
- package/Libraries/vendor/emitter/EventEmitter.js +6 -2
- package/README-core.md +0 -3
- package/README.md +3 -1
- package/React/Base/RCTBridge.h +5 -3
- package/React/Base/RCTBridge.mm +95 -13
- package/React/Base/RCTBridgeProxy.mm +1 -1
- package/React/Base/RCTRootView.h +7 -1
- package/React/Base/RCTRootView.m +38 -0
- package/React/Base/RCTRootViewInternal.h +1 -0
- package/React/Base/RCTTVRemoteSelectHandler.m +2 -1
- package/React/Base/RCTUtils.h +8 -5
- package/React/Base/{RCTUtils.m → RCTUtils.mm} +55 -28
- package/React/Base/RCTVersion.m +2 -2
- package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h +6 -0
- package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.mm +37 -0
- package/React/CoreModules/PlatformStubs/RCTStatusBarManager.mm +3 -8
- package/React/CoreModules/RCTAccessibilityManager.mm +9 -11
- package/React/CoreModules/RCTAppState.mm +11 -9
- package/React/CoreModules/RCTAppearance.mm +2 -14
- package/React/CoreModules/RCTDevSettings.mm +0 -1
- package/React/CoreModules/RCTDeviceInfo.mm +50 -19
- package/React/CoreModules/RCTLogBox.mm +1 -1
- package/React/CoreModules/RCTPerfMonitor.mm +1 -1
- package/React/CoreModules/RCTPlatform.mm +25 -20
- package/React/CoreModules/RCTStatusBarManager.mm +18 -13
- package/React/CoreModules/RCTTVNavigationEventEmitter.mm +0 -2
- package/React/CoreModules/React-CoreModules.podspec +4 -18
- package/React/CxxBridge/RCTCxxBridge.mm +6 -18
- package/React/CxxModule/RCTNativeModule.mm +1 -1
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI-generated.cpp +173 -133
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +600 -425
- package/React/Fabric/Mounting/ComponentViews/Image/RCTImageComponentView.mm +5 -0
- package/React/Fabric/Mounting/ComponentViews/LegacyViewManagerInterop/RCTLegacyViewManagerInteropComponentView.mm +21 -8
- package/React/Fabric/Mounting/ComponentViews/LegacyViewManagerInterop/RCTLegacyViewManagerInteropCoordinatorAdapter.h +1 -1
- package/React/Fabric/Mounting/ComponentViews/LegacyViewManagerInterop/RCTLegacyViewManagerInteropCoordinatorAdapter.mm +2 -2
- package/React/Fabric/Mounting/ComponentViews/Modal/RCTModalHostViewComponentView.mm +2 -4
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +2 -2
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +31 -0
- package/React/Fabric/Mounting/ComponentViews/Switch/RCTSwitchComponentView.mm +13 -1
- package/React/Fabric/Mounting/ComponentViews/Text/RCTAccessibilityElement.h +1 -1
- package/React/Fabric/Mounting/ComponentViews/Text/RCTAccessibilityElement.mm +2 -2
- package/React/Fabric/Mounting/ComponentViews/Text/RCTParagraphComponentAccessibilityProvider.mm +13 -8
- package/React/Fabric/Mounting/ComponentViews/Text/RCTParagraphComponentView.mm +62 -15
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +47 -4
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +1 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewAccessibilityElement.h +28 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewAccessibilityElement.mm +83 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.h +11 -0
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +130 -34
- package/React/Fabric/Mounting/RCTComponentViewFactory.h +0 -6
- package/React/Fabric/Mounting/RCTComponentViewFactory.mm +36 -31
- package/React/Fabric/RCTScheduler.mm +6 -0
- package/React/Fabric/Utils/RCTBoxShadow.h +2 -4
- package/React/Fabric/Utils/RCTBoxShadow.mm +92 -224
- package/React/Fabric/Utils/RCTGradientUtils.h +21 -0
- package/React/Fabric/Utils/RCTGradientUtils.mm +204 -0
- package/React/Fabric/Utils/RCTLinearGradient.mm +3 -192
- package/React/Fabric/Utils/{RCTViewFinder.h → RCTRadialGradient.h} +3 -2
- package/React/Fabric/Utils/RCTRadialGradient.mm +229 -0
- package/React/Profiler/RCTProfile.m +1 -1
- package/React/React-RCTFBReactNativeSpec.podspec +3 -13
- package/React/React-RCTFabric.podspec +6 -14
- package/React/Runtime/React-RCTRuntime.podspec +4 -18
- package/React/Views/RCTBorderDrawing.h +5 -2
- package/React/Views/RCTBorderDrawing.m +29 -12
- package/React/Views/RCTFont.mm +0 -4
- package/React/Views/RCTTVView.m +4 -4
- package/React/Views/RCTView.m +4 -4
- package/React/Views/ScrollView/RCTScrollView.m +1 -1
- package/React-Core.podspec +4 -20
- package/ReactAndroid/api/ReactAndroid.api +617 -1147
- package/ReactAndroid/build.gradle.kts +4 -2
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +9 -15
- package/ReactAndroid/external-artifacts/build.gradle.kts +6 -4
- package/ReactAndroid/gradle.properties +4 -2
- package/ReactAndroid/hermes-engine/build.gradle.kts +7 -4
- package/ReactAndroid/proguard-rules.pro +0 -6
- package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutor.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/BaseReactPackage.kt +3 -2
- package/ReactAndroid/src/main/java/com/facebook/react/CoreModulesPackage.java +11 -2
- package/ReactAndroid/src/main/java/com/facebook/react/DebugCorePackage.kt +56 -0
- package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/JSEngineResolutionAlgorithm.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/LazyReactPackage.java +14 -3
- package/ReactAndroid/src/main/java/com/facebook/react/MemoryPressureRouter.kt +54 -0
- package/ReactAndroid/src/main/java/com/facebook/react/NativeModuleRegistryBuilder.kt +15 -4
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivity.java +20 -8
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +4 -12
- package/ReactAndroid/src/main/java/com/facebook/react/ReactAndroidHWInputDeviceHelper.kt +88 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +20 -56
- package/ReactAndroid/src/main/java/com/facebook/react/ReactFragment.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/ReactHost.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +41 -42
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManagerBuilder.java +9 -2
- package/ReactAndroid/src/main/java/com/facebook/react/ReactNativeHost.java +9 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackage.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageHelper.kt +0 -1
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageLogger.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageTurboModuleManagerDelegate.java +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java +12 -12
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNode.kt +10 -10
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ColorAnimatedNode.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/animated/EventAnimationDriver.kt +0 -6
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.kt +1072 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.kt +774 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ValueAnimatedNode.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ActivityEventListener.kt +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/Arguments.java +9 -7
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BaseActivityEventListener.kt +29 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BaseJavaModule.java +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BridgeReactContext.java +14 -3
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BridgeSoLoader.kt +36 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CallbackImpl.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CatalystInstance.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CatalystInstanceImpl.java +17 -13
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ColorPropConverter.kt +214 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxCallbackImpl.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxModuleWrapper.kt +10 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxModuleWrapperBase.kt +56 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/Dynamic.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromArray.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromMap.kt +80 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromObject.kt +80 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicNative.kt +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/GuardedAsyncTask.kt +42 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/GuardedRunnable.kt +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/Inspector.kt +78 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSBundleLoader.kt +99 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSInstance.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSONArguments.kt +118 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaMethodWrapper.java +13 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaModuleWrapper.kt +142 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptContextHolder.kt +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptExecutor.kt +30 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptModuleRegistry.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JsonWriterHelper.kt +129 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/LifecycleEventListener.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ModuleHolder.java +8 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ModuleSpec.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArgumentsParseException.kt +10 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArray.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeMap.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeModule.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeModuleRegistry.java +18 -7
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/OnBatchCompleteListener.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/PromiseImpl.java +9 -8
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactApplicationContext.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactContextBaseJavaModule.java +5 -7
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactCxxErrorHandler.kt +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactIgnorableMountingException.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactInstanceManagerInspectorTarget.java +7 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactMarker.java +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactMethod.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactModuleWithSpec.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNativeJniCommonSoLoader.kt +31 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactNoCrashBridgeNotAllowedSoftException.kt +10 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactSoftExceptionLogger.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableArrayBuilder.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableMapBuilder.kt +61 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/Systrace.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManager.kt +6 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManagerProvider.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UiThreadUtil.kt +69 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/interop/InteropModuleRegistry.kt +13 -7
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadHandler.kt +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/common/ClassFinder.kt +3 -4
- package/ReactAndroid/src/main/java/com/facebook/react/common/ClearableSynchronizedPool.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/common/SurfaceDelegate.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/LegacyArchitectureShadowNodeWithCxxImpl.kt +23 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/InteropLegacyArchitecture.kt +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/LegacyArchitecture.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/LegacyArchitectureLogger.kt +66 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/build/ReactBuildConfig.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/ReadableMapBuffer.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/WritableMapBuffer.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultSoLoader.kt +10 -12
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgeDevSupportManager.kt +98 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgelessDevSupportManager.kt +81 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BundleDownloader.kt +323 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ChangeBundleLocationDialog.kt +118 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.kt +159 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DebugOverlayController.kt +87 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevSupportManagerFactory.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.kt +413 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.kt +903 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerFactory.kt +57 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DoubleTapReloadRecognizer.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/InspectorFlags.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/LogBoxModule.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/MultipartStreamReader.kt +167 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReactInstanceDevHelper.kt +44 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReleaseDevSupportManager.kt +10 -16
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/StackTraceHelper.kt +251 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevBundleDownloadListener.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevSupportManager.kt +11 -13
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/RedBoxHandler.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/StackFrame.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/DevToolsReactPerfLogger.kt +176 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricSoLoader.kt +4 -5
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +177 -86
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerBinding.kt +6 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.kt +6 -11
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/StateWrapperImpl.kt +103 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/SurfaceHandlerBinding.kt +13 -11
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventBeatManager.kt +8 -12
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventEmitterWrapper.kt +5 -9
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/FabricEventEmitter.kt +7 -15
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/interop/UIBlock.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/interop/UIBlockViewResolver.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/LayoutMetricsConversions.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountItemDispatcher.java +16 -39
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java +24 -25
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +12 -5
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/BatchMountItem.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/IntBufferBatchMountItem.kt +335 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/MountItem.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/MountItemFactory.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEventMountItem.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/TaskInterface.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler.kt +16 -16
- package/ReactAndroid/src/main/java/com/facebook/react/internal/SystraceSection.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +75 -60
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +120 -100
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +25 -21
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +27 -23
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +135 -113
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android.kt +1 -3
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Stable_Android.kt +0 -2
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +25 -21
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeNewArchitectureFeatureFlags.kt +84 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeNewArchitectureFeatureFlagsDefaults.kt +0 -2
- package/ReactAndroid/src/main/java/com/facebook/react/internal/interop/InteropEvent.kt +14 -4
- package/ReactAndroid/src/main/java/com/facebook/react/internal/interop/InteropEventEmitter.kt +12 -2
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleInteropUtils.kt +293 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleManager.kt +405 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleManagerDelegate.kt +63 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModulePerfLogger.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/jscexecutor/JSCExecutor.kt +5 -0
- package/ReactAndroid/src/main/java/com/facebook/react/jscexecutor/JSCExecutorFactory.kt +7 -0
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskConfig.kt +1 -5
- package/ReactAndroid/src/main/java/com/facebook/react/jstasks/HeadlessJsTaskEventListener.kt +3 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/accessibilityinfo/AccessibilityInfoModule.kt +13 -12
- package/ReactAndroid/src/main/java/com/facebook/react/modules/appearance/AppearanceModule.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobModule.kt +336 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobProvider.kt +113 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/FileReaderModule.kt +99 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/common/ModuleDataCleaner.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ExceptionsManagerModule.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/HeadlessJsTaskSupportModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JSTimers.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/PermissionAwareActivity.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/PermissionListener.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactChoreographer.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DevMenuModule.kt +5 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DevSettingsModule.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DidJSUpdateUiDuringFrameDetector.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/FpsDebugFrameCallback.kt +14 -8
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/SourceCodeModule.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/deviceinfo/DeviceInfoModule.kt +12 -17
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/AlertFragment.kt +209 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/DialogModule.kt +205 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/ReactOkHttpNetworkFetcher.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/SystraceRequestListener.kt +18 -18
- package/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager/I18nManagerModule.kt +6 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.kt +11 -22
- package/ReactAndroid/src/main/java/com/facebook/react/modules/intent/IntentModule.kt +35 -29
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ForwardingCookieHandler.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkingModule.kt +846 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpCompat.java +4 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressResponseBody.kt +57 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/permissions/PermissionsModule.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/share/ShareModule.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/modules/sound/SoundManagerModule.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/statusbar/StatusBarModule.kt +13 -12
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoHelpers.kt +14 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.kt +6 -5
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +20 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/toast/ToastModule.kt +7 -11
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/FileIoHandler.kt +161 -0
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/JSPackagerClient.kt +130 -0
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/PackagerConnectionSettings.kt +10 -2
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/ReconnectingWebSocket.kt +156 -0
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/RequestOnlyHandler.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessAtomicRef.kt +112 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessCatalystInstance.kt +10 -4
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessReactContext.kt +159 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessReactStateTracker.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/CoreReactPackage.kt +113 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostDelegate.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.java +97 -75
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImplDevHelper.kt +11 -10
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostInspectorTarget.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.kt +599 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactLifecycleStateManager.kt +91 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactSurfaceImpl.kt +217 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactSurfaceView.kt +12 -11
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/cxxreactpackage/CxxReactPackage.kt +4 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Continuation.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Task.kt +418 -0
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/TaskCompletionSource.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/shell/MainReactPackage.kt +31 -25
- package/ReactAndroid/src/main/java/com/facebook/react/soloader/OpenSourceMergedSoMapping.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/touch/JSResponderHandler.kt +9 -9
- package/ReactAndroid/src/main/java/com/facebook/react/touch/OnInterceptTouchEventListener.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/touch/ReactHitSlopView.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/touch/ReactInterceptingViewGroup.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core/CallInvokerHolderImpl.kt +2 -11
- package/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core/NativeMethodCallInvokerHolderImpl.kt +3 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +7 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +64 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.kt +7 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BlendModeHelper.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ComponentNameResolver.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSPointerDispatcher.java +59 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutDirectionUtil.kt +7 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutShadowNode.java +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LengthPercentage.kt +1 -10
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeKind.kt +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeViewHierarchyManager.java +13 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeViewHierarchyOptimizer.java +11 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NoSuchNativeViewException.kt +12 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/OnLayoutEvent.kt +93 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/PixelUtil.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAccessibilityDelegate.java +16 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAxOrderHelper.kt +146 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroup.kt +11 -9
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroupHelper.kt +63 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactCompoundView.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactOverflowView.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactPointerEventsView.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactRootViewTagGenerator.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactShadowNode.java +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactShadowNodeImpl.java +10 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactStylesDiffMap.kt +68 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactYogaConfigProvider.kt +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReferenceStateWrapper.kt +13 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ShadowNodeRegistry.kt +103 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/Spacing.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ThemedReactContext.java +8 -11
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/TouchTargetHelper.kt +435 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/TransformHelper.kt +223 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIConstantsProviderBinding.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java +19 -13
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerHelper.java +14 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java +31 -15
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModuleConstants.kt +92 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModuleConstantsHelper.java +17 -13
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModuleListener.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIViewOperationQueue.java +27 -22
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewAtIndex.kt +46 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewGroupDrawingOrderHelper.kt +109 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewGroupManager.kt +87 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManager.java +22 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerPropertyUpdater.kt +7 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerRegistry.java +9 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewProps.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/YogaNodePool.kt +6 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactProp.kt +97 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactPropGroup.kt +86 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactPropertyHolder.kt +15 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/common/UIManagerType.kt +5 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/common/ViewUtil.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/debug/NotThreadSafeViewHierarchyUpdateDebugListener.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BackgroundDrawable.kt +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BorderDrawable.kt +9 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/InsetBoxShadowDrawable.kt +8 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutlineDrawable.kt +10 -10
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlackHoleEventDispatcher.kt +3 -17
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlurEvent.kt +16 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/Event.kt +206 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventCategoryDef.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcher.kt +1 -13
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherImpl.java +16 -43
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/EventDispatcherProvider.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/{ReactEventEmitter.kt → EventEmitterImpl.kt} +39 -47
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.kt +33 -43
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FocusEvent.kt +16 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/PointerEventHelper.kt +27 -31
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/RCTEventEmitter.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/RCTModernEventEmitter.kt +0 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEvent.kt +11 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchesHelper.kt +12 -8
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/internal/LegacyArchitectureShadowNodeLogger.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/AbstractLayoutAnimation.kt +128 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/AnimatedPropertyType.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/BaseLayoutAnimation.kt +85 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutAnimationController.kt +225 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutAnimationListener.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutAnimationType.kt +10 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutCreateAnimation.kt +12 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutDeleteAnimation.kt +12 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutHandlingAnimation.kt +12 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutUpdateAnimation.kt +10 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/OpacityAnimation.kt +69 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/PositionAndSizeAnimation.kt +87 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/SimpleSpringInterpolator.kt +10 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BackgroundImageLayer.kt +30 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderRadiusStyle.kt +36 -22
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/ColorStop.kt +206 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/CornerRadii.kt +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Gradient.kt +2 -38
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LinearGradient.kt +72 -246
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/RadialGradient.kt +375 -0
- package/ReactAndroid/src/main/java/com/facebook/react/util/AndroidVersion.kt +30 -0
- package/ReactAndroid/src/main/java/com/facebook/react/util/JSStackTrace.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlay.kt +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/ReactDrawerLayoutManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerClosedEvent.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerOpenedEvent.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerSlideEvent.kt +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerStateChangedEvent.kt +7 -10
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ImageLoadEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageView.kt +6 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/ImageSource.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/MultiSourceHelper.kt +7 -10
- package/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper/ResourceDrawableIdHelper.kt +20 -17
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostManager.kt +20 -28
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt +43 -41
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/RequestCloseEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ShowEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/progressbar/ProgressBarShadowNode.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaView.kt +14 -12
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewShadowNode.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/MaintainVisibleScrollPositionHelper.kt +172 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +27 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollViewManager.kt +366 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +36 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.kt +74 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.kt +390 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ScrollEvent.kt +4 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/ReactSwipeRefreshLayout.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/RefreshEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/SwipeRefreshLayoutManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchShadowNode.kt +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/FontMetricsUtil.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/PreparedLayout.kt +18 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/PreparedLayoutTextView.kt +418 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/PreparedLayoutTextViewManager.kt +212 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactBaseTextShadowNode.java +25 -12
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextManager.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextShadowNode.kt +31 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextAnchorViewManager.kt +207 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextShadowNode.java +6 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextUpdate.kt +1 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +40 -54
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewAccessibilityDelegate.kt +4 -10
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewManager.java +9 -14
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactVirtualTextShadowNode.kt +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactVirtualTextViewManager.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextAttributeProps.java +30 -8
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextAttributes.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextLayoutManager.java +237 -121
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/TextTransform.kt +8 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageShadowNode.kt +140 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageSpan.kt +174 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/CustomLetterSpacingSpan.kt +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/CustomLineHeightSpan.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/CustomStyleSpan.kt +8 -8
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactAbsoluteSizeSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactBackgroundColorSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactClickableSpan.kt +6 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactForegroundColorSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactOpacitySpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactStrikethroughSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactTagSpan.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactTextPaintHolderSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactUnderlineSpan.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/SetSpanOperation.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ShadowStyleSpan.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/TextInlineImageSpan.kt +11 -11
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/TextInlineViewPlaceholderSpan.kt +4 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactContentSizeChangedEvent.kt +50 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.kt +1331 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditTextInputConnectionWrapper.kt +151 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextChangedEvent.kt +44 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextContentSizeWatcher.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputEndEditingEvent.kt +43 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputKeyPressEvent.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputLocalData.kt +33 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.kt +1139 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputSelectionEvent.kt +46 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputShadowNode.kt +210 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputSubmitEditingEvent.kt +40 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputTextWatcher.kt +66 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextScrollWatcher.kt +49 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextSelectionWatcher.kt +45 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview/ReactUnimplementedView.kt +12 -9
- package/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager.kt +6 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/MeasureUtil.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.java +37 -11
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +51 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ViewGroupClickEvent.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/systrace/Systrace.kt +19 -23
- package/ReactAndroid/src/main/java/com/facebook/systrace/SystraceMessage.kt +10 -11
- package/ReactAndroid/src/main/java/com/facebook/systrace/TraceListener.kt +3 -3
- package/ReactAndroid/src/main/jni/CMakeLists.txt +22 -9
- package/ReactAndroid/src/main/jni/first-party/fbgloginit/CMakeLists.txt +3 -0
- package/ReactAndroid/src/main/jni/first-party/jni-lib-merge/CMakeLists.txt +3 -1
- package/ReactAndroid/src/main/jni/first-party/jni-lib-merge/jni_lib_merge.h +1 -2
- package/ReactAndroid/src/main/jni/first-party/yogajni/CMakeLists.txt +4 -7
- package/ReactAndroid/src/main/jni/react/devsupport/CMakeLists.txt +3 -2
- package/ReactAndroid/src/main/jni/react/fabric/CMakeLists.txt +2 -9
- package/ReactAndroid/src/main/jni/react/fabric/EventBeatManager.cpp +3 -8
- package/ReactAndroid/src/main/jni/react/fabric/EventBeatManager.h +1 -9
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +12 -0
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.h +4 -0
- package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.cpp +130 -13
- package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.h +9 -0
- package/ReactAndroid/src/main/jni/react/fabric/FocusOrderingHelper.cpp +186 -0
- package/ReactAndroid/src/main/jni/react/fabric/FocusOrderingHelper.h +38 -0
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.cpp +10 -0
- package/ReactAndroid/src/main/jni/react/fabric/StateWrapperImpl.h +1 -0
- package/ReactAndroid/src/main/jni/react/fabric/SurfaceHandlerBinding.cpp +5 -2
- package/ReactAndroid/src/main/jni/react/fabric/SurfaceHandlerBinding.h +2 -1
- package/ReactAndroid/src/main/jni/react/featureflags/CMakeLists.txt +2 -10
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +166 -138
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +34 -28
- package/ReactAndroid/src/main/jni/react/hermes/instrumentation/CMakeLists.txt +2 -5
- package/ReactAndroid/src/main/jni/react/hermes/reactexecutor/CMakeLists.txt +3 -7
- package/ReactAndroid/src/main/jni/react/hermes/tooling/CMakeLists.txt +2 -0
- package/ReactAndroid/src/main/jni/react/jni/CMakeLists.txt +54 -6
- package/ReactAndroid/src/main/jni/react/jni/JSLoader.cpp +14 -18
- package/ReactAndroid/src/main/jni/react/jni/JavaModuleWrapper.cpp +10 -17
- package/ReactAndroid/src/main/jni/react/jni/JniJSModulesUnbundle.cpp +1 -0
- package/ReactAndroid/src/main/jni/react/jni/MethodInvoker.cpp +9 -14
- package/ReactAndroid/src/main/jni/react/jni/OnLoad-common.cpp +33 -0
- package/ReactAndroid/src/main/jni/react/jni/OnLoad.cpp +0 -15
- package/ReactAndroid/src/main/jni/react/jni/SafeReleaseJniRef.cpp +30 -0
- package/ReactAndroid/src/main/jni/react/jni/SafeReleaseJniRef.h +12 -1
- package/ReactAndroid/src/main/jni/react/jni/WritableNativeArray.cpp +3 -3
- package/ReactAndroid/src/main/jni/react/jscexecutor/CMakeLists.txt +2 -0
- package/ReactAndroid/src/main/jni/react/jsctooling/CMakeLists.txt +2 -0
- package/ReactAndroid/src/main/jni/react/mapbuffer/CMakeLists.txt +3 -2
- package/ReactAndroid/src/main/jni/react/newarchdefaults/CMakeLists.txt +3 -6
- package/ReactAndroid/src/main/jni/react/newarchdefaults/DefaultComponentsRegistry.cpp +10 -0
- package/ReactAndroid/src/main/jni/react/newarchdefaults/DefaultComponentsRegistry.h +4 -0
- package/ReactAndroid/src/main/jni/react/reactnativeblob/CMakeLists.txt +4 -1
- package/ReactAndroid/src/main/jni/react/reactperflogger/CMakeLists.txt +3 -1
- package/ReactAndroid/src/main/jni/react/runtime/cxxreactpackage/CMakeLists.txt +4 -7
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/CMakeLists.txt +4 -8
- package/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt +5 -7
- package/ReactAndroid/src/main/jni/react/runtime/jni/JBindingsInstaller.h +2 -4
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactInstance.cpp +0 -4
- package/ReactAndroid/src/main/jni/react/runtime/jsc/jni/CMakeLists.txt +3 -1
- package/ReactAndroid/src/main/jni/react/turbomodule/CMakeLists.txt +4 -7
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/CallInvokerHolder.cpp +1 -7
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/CallInvokerHolder.h +4 -3
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/NativeMethodCallInvokerHolder.cpp +1 -8
- package/ReactAndroid/src/main/jni/react/turbomodule/ReactCommon/NativeMethodCallInvokerHolder.h +4 -3
- package/ReactAndroid/src/main/jni/react/uimanager/CMakeLists.txt +3 -2
- package/ReactAndroid/src/main/jni/third-party/boost/CMakeLists.txt +1 -0
- package/ReactAndroid/src/main/jni/third-party/double-conversion/CMakeLists.txt +4 -1
- package/ReactAndroid/src/main/jni/third-party/fast_float/CMakeLists.txt +2 -1
- package/ReactAndroid/src/main/jni/third-party/fmt/CMakeLists.txt +2 -1
- package/ReactAndroid/src/main/jni/third-party/glog/CMakeLists.txt +14 -9
- package/ReactAndroid/src/main/res/devsupport/values/strings.xml +5 -0
- package/ReactAndroid/src/main/res/devsupport/values-am/strings.xml +6 -0
- package/ReactAndroid/src/main/res/shell/values/styles.xml +4 -4
- package/ReactAndroid/src/main/res/systeminfo/values/strings.xml +4 -0
- package/ReactAndroid/src/main/res/systeminfo/values-af/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ar/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-az/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-be/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-bg/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-bn/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ca/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-cs/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-da/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-de/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-el/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-en-rGB/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-es/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-es-rES/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-et/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-fa/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-fi/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-fr/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-fr-rCA/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-gu/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-hi/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-hr/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-hu/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-hy/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-is/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-it/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-iw/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ja/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ka/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-kk/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-km/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-kn/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ko/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ky/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-lo/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-lt/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-lv/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-mk/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ml/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-mn/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-mr/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ms/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-my/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ne/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-nl/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-pa/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-pl/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-pt/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-pt-rPT/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ro/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ru/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-si/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-sk/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-sl/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-sq/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-sr/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-sv/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-sw/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ta/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-te/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-th/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-tr/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-uk/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-ur/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-vi/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-zh-rCN/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-zh-rHK/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-zh-rTW/strings.xml +6 -0
- package/ReactAndroid/src/main/res/systeminfo/values-zu/strings.xml +6 -0
- package/ReactAndroid/src/main/res/views/uimanager/values/ids.xml +15 -0
- package/ReactAndroid/src/main/res/views/uimanager/values-am/strings.xml +6 -0
- package/ReactCommon/React-Fabric.podspec +4 -59
- package/ReactCommon/React-FabricComponents.podspec +4 -40
- package/ReactCommon/React-FabricImage.podspec +2 -19
- package/ReactCommon/React-Mapbuffer.podspec +2 -2
- package/ReactCommon/ReactCommon.podspec +4 -13
- package/ReactCommon/callinvoker/CMakeLists.txt +3 -6
- package/ReactCommon/cmake-utils/react-native-flags.cmake +39 -0
- package/ReactCommon/cxxreact/CMakeLists.txt +4 -6
- package/ReactCommon/cxxreact/CxxNativeModule.cpp +23 -33
- package/ReactCommon/cxxreact/JSExecutor.cpp +5 -2
- package/ReactCommon/cxxreact/JSIndexedRAMBundle.cpp +12 -10
- package/ReactCommon/cxxreact/JSModulesUnbundle.h +2 -4
- package/ReactCommon/cxxreact/JsArgumentHelpers-inl.h +28 -21
- package/ReactCommon/cxxreact/JsArgumentHelpers.h +1 -2
- package/ReactCommon/cxxreact/MethodCall.cpp +17 -17
- package/ReactCommon/cxxreact/ModuleRegistry.cpp +15 -12
- package/ReactCommon/cxxreact/NativeToJsBridge.cpp +4 -8
- package/ReactCommon/cxxreact/RAMBundleRegistry.cpp +2 -1
- package/ReactCommon/cxxreact/React-cxxreact.podspec +4 -13
- package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
- package/ReactCommon/cxxreact/TraceSection.h +1 -1
- package/ReactCommon/cxxreact/tests/jsarg_helpers.cpp +2 -2
- package/ReactCommon/devtoolsruntimesettings/CMakeLists.txt +4 -9
- package/ReactCommon/hermes/React-hermes.podspec +4 -13
- package/ReactCommon/hermes/executor/CMakeLists.txt +2 -1
- package/ReactCommon/hermes/inspector-modern/CMakeLists.txt +3 -6
- package/ReactCommon/hermes/inspector-modern/chrome/ConnectionDemux.cpp +2 -8
- package/ReactCommon/hermes/inspector-modern/chrome/ConnectionDemux.h +2 -8
- package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeSamplingProfileSerializer.cpp +100 -106
- package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeTargetDelegate.cpp +1 -1
- package/ReactCommon/hermes/inspector-modern/chrome/Registration.cpp +2 -8
- package/ReactCommon/hermes/inspector-modern/chrome/Registration.h +2 -8
- package/ReactCommon/jsc/CMakeLists.txt +4 -7
- package/ReactCommon/jsc/React-jsc.podspec +1 -1
- package/ReactCommon/jserrorhandler/CMakeLists.txt +2 -1
- package/ReactCommon/jserrorhandler/JsErrorHandler.cpp +12 -5
- package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +2 -11
- package/ReactCommon/jsi/CMakeLists.txt +5 -6
- package/ReactCommon/jsi/React-jsi.podspec +2 -15
- package/ReactCommon/jsiexecutor/CMakeLists.txt +4 -5
- package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +4 -14
- package/ReactCommon/jsiexecutor/jsireact/JSIExecutor.cpp +7 -8
- package/ReactCommon/jsiexecutor/jsireact/JSIExecutor.h +1 -2
- package/ReactCommon/jsinspector-modern/CMakeLists.txt +7 -6
- package/ReactCommon/jsinspector-modern/HostAgent.cpp +304 -208
- package/ReactCommon/jsinspector-modern/HostAgent.h +8 -48
- package/ReactCommon/jsinspector-modern/HostTarget.cpp +1 -1
- package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +1 -0
- package/ReactCommon/jsinspector-modern/InstanceAgent.cpp +4 -3
- package/ReactCommon/jsinspector-modern/InstanceAgent.h +1 -1
- package/ReactCommon/jsinspector-modern/NetworkIOAgent.cpp +22 -0
- package/ReactCommon/jsinspector-modern/NetworkIOAgent.h +2 -4
- package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +4 -14
- package/ReactCommon/jsinspector-modern/RuntimeAgent.h +1 -1
- package/ReactCommon/jsinspector-modern/RuntimeAgentDelegate.h +1 -1
- package/ReactCommon/jsinspector-modern/TracingAgent.cpp +27 -12
- package/ReactCommon/jsinspector-modern/TracingAgent.h +2 -1
- package/ReactCommon/jsinspector-modern/cdp/CMakeLists.txt +26 -0
- package/ReactCommon/jsinspector-modern/cdp/React-jsinspectorcdp.podspec +50 -0
- package/ReactCommon/jsinspector-modern/network/CMakeLists.txt +27 -0
- package/ReactCommon/jsinspector-modern/network/CdpNetwork.cpp +143 -0
- package/ReactCommon/jsinspector-modern/network/CdpNetwork.h +110 -0
- package/ReactCommon/jsinspector-modern/network/HttpUtils.cpp +157 -0
- package/ReactCommon/jsinspector-modern/network/HttpUtils.h +27 -0
- package/ReactCommon/jsinspector-modern/network/NetworkReporter.cpp +195 -0
- package/ReactCommon/jsinspector-modern/network/NetworkReporter.h +139 -0
- package/ReactCommon/jsinspector-modern/network/NetworkTypes.h +42 -0
- package/ReactCommon/jsinspector-modern/network/React-jsinspectornetwork.podspec +52 -0
- package/ReactCommon/jsinspector-modern/tests/InspectorPackagerConnectionTest.cpp +1 -2
- package/ReactCommon/jsinspector-modern/tests/ReactInstanceIntegrationTest.cpp +12 -0
- package/ReactCommon/jsinspector-modern/tracing/CMakeLists.txt +3 -6
- package/ReactCommon/jsinspector-modern/tracing/{EventLoopTaskReporter.cpp → EventLoopReporter.cpp} +22 -9
- package/ReactCommon/jsinspector-modern/tracing/{EventLoopTaskReporter.h → EventLoopReporter.h} +13 -7
- package/ReactCommon/jsinspector-modern/tracing/InstanceTracingProfile.h +2 -5
- package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.cpp +55 -42
- package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.h +22 -13
- package/ReactCommon/jsinspector-modern/tracing/ProfileTreeNode.h +39 -30
- package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +3 -8
- package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfile.h +16 -0
- package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfileTraceEventSerializer.cpp +186 -162
- package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfileTraceEventSerializer.h +138 -5
- package/ReactCommon/jsinspector-modern/tracing/TraceEventProfile.h +40 -92
- package/ReactCommon/jsinspector-modern/tracing/tests/ProfileTreeNodeTest.cpp +27 -35
- package/ReactCommon/jsinspector-modern/tracing/tests/RuntimeSamplingProfileTraceEventSerializerTest.cpp +290 -0
- package/ReactCommon/jsitooling/CMakeLists.txt +4 -8
- package/ReactCommon/jsitooling/React-jsitooling.podspec +3 -21
- package/ReactCommon/logger/CMakeLists.txt +2 -1
- package/ReactCommon/logger/React-logger.podspec +1 -9
- package/ReactCommon/logger/react_native_log.cpp +2 -2
- package/ReactCommon/oscompat/CMakeLists.txt +2 -1
- package/ReactCommon/react/bridging/CMakeLists.txt +3 -7
- package/ReactCommon/react/debug/CMakeLists.txt +3 -8
- package/ReactCommon/react/featureflags/CMakeLists.txt +4 -9
- package/ReactCommon/react/featureflags/React-featureflags.podspec +2 -7
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +49 -41
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +63 -53
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +223 -187
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +30 -26
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +46 -38
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDynamicProvider.h +100 -82
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSCanary.h +51 -0
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSExperimental.h +33 -0
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSStable.h +33 -0
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +15 -13
- package/ReactCommon/react/nativemodule/core/CMakeLists.txt +3 -8
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboCxxModule.cpp +4 -6
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleBinding.cpp +2 -0
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleWithJSIBindings.cpp +23 -0
- package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleWithJSIBindings.h +29 -0
- package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.cpp +12 -18
- package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.h +6 -1
- package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +3 -9
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.h +3 -0
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +29 -2
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm +7 -39
- package/ReactCommon/react/nativemodule/cputime/CPUTime.h +30 -2
- package/ReactCommon/react/nativemodule/defaults/CMakeLists.txt +3 -7
- package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +3 -10
- package/ReactCommon/react/nativemodule/devtoolsruntimesettings/CMakeLists.txt +3 -7
- package/ReactCommon/react/nativemodule/dom/CMakeLists.txt +3 -7
- package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +2 -8
- package/ReactCommon/react/nativemodule/fantomforcedclonecommithook/NativeFantomForcedCloneCommitHook.cpp +84 -0
- package/ReactCommon/react/nativemodule/fantomforcedclonecommithook/NativeFantomForcedCloneCommitHook.h +30 -0
- package/ReactCommon/react/nativemodule/featureflags/CMakeLists.txt +3 -7
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +58 -48
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +25 -21
- package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +3 -10
- package/ReactCommon/react/nativemodule/idlecallbacks/CMakeLists.txt +3 -8
- package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +4 -11
- package/ReactCommon/react/nativemodule/microtasks/CMakeLists.txt +3 -7
- package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +3 -10
- package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +1 -17
- package/ReactCommon/react/nativemodule/samples/platform/android/CMakeLists.txt +4 -8
- package/ReactCommon/react/nativemodule/samples/platform/android/NativeSampleTurboModuleSpec.java +3 -0
- package/ReactCommon/react/nativemodule/samples/platform/android/ReactCommon/SampleTurboModuleSpec.cpp +21 -1
- package/ReactCommon/react/nativemodule/samples/platform/android/SampleTurboModule.kt +32 -5
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleLegacyModule.mm +5 -10
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboModule.mm +18 -15
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +53 -9
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.h +29 -6
- package/ReactCommon/react/performance/timeline/CMakeLists.txt +5 -9
- package/ReactCommon/react/performance/timeline/CircularBuffer.h +0 -1
- package/ReactCommon/react/performance/timeline/PerformanceEntry.h +53 -15
- package/ReactCommon/react/performance/timeline/PerformanceEntryCircularBuffer.cpp +12 -3
- package/ReactCommon/react/performance/timeline/PerformanceEntryKeyedBuffer.cpp +5 -2
- package/ReactCommon/react/performance/timeline/PerformanceEntryKeyedBuffer.h +0 -1
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +29 -33
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +9 -4
- package/ReactCommon/react/performance/timeline/PerformanceObserver.cpp +8 -3
- package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +3 -11
- package/ReactCommon/react/performance/timeline/tests/PerformanceEntryReporterTest.cpp +80 -165
- package/ReactCommon/react/performance/timeline/tests/PerformanceObserverTest.cpp +38 -71
- package/ReactCommon/react/renderer/animations/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/animations/LayoutAnimationKeyFrameManager.cpp +5 -9
- package/ReactCommon/react/renderer/attributedstring/AttributedString.cpp +2 -9
- package/ReactCommon/react/renderer/attributedstring/AttributedString.h +3 -3
- package/ReactCommon/react/renderer/attributedstring/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/attributedstring/ParagraphAttributes.cpp +2 -1
- package/ReactCommon/react/renderer/attributedstring/ParagraphAttributes.h +8 -1
- package/ReactCommon/react/renderer/attributedstring/TextAttributes.cpp +4 -6
- package/ReactCommon/react/renderer/attributedstring/TextAttributes.h +2 -2
- package/ReactCommon/react/renderer/attributedstring/conversions.h +38 -6
- package/ReactCommon/react/renderer/componentregistry/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/componentregistry/ComponentDescriptorRegistry.cpp +25 -5
- package/ReactCommon/react/renderer/componentregistry/native/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/image/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/LegacyViewManagerInteropShadowNode.h +1 -2
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/RCTLegacyViewManagerInteropCoordinator.h +1 -1
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/UnstableLegacyViewManagerAutomaticShadowNode.h +0 -1
- package/ReactCommon/react/renderer/components/modal/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/progressbar/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/rncore/EventEmitters.cpp +48 -48
- package/ReactCommon/react/renderer/components/root/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/safeareaview/CMakeLists.txt +4 -10
- package/ReactCommon/react/renderer/components/scrollview/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.cpp +15 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.h +3 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewProps.cpp +1 -0
- package/ReactCommon/react/renderer/components/switch/CMakeLists.txt +4 -10
- package/ReactCommon/react/renderer/components/text/CMakeLists.txt +13 -9
- package/ReactCommon/react/renderer/components/text/ParagraphProps.cpp +6 -0
- package/ReactCommon/react/renderer/components/text/ParagraphShadowNode.cpp +111 -25
- package/ReactCommon/react/renderer/components/text/ParagraphShadowNode.h +22 -2
- package/ReactCommon/react/renderer/components/text/{ParagraphState.cpp → platform/android/react/renderer/components/text/ParagraphState.cpp} +0 -2
- package/ReactCommon/react/renderer/components/text/{ParagraphState.h → platform/android/react/renderer/components/text/ParagraphState.h} +9 -14
- package/ReactCommon/react/renderer/components/text/platform/cxx/react/renderer/components/text/ParagraphState.h +42 -0
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputProps.cpp +8 -1
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputProps.h +2 -0
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputShadowNode.h +25 -11
- package/ReactCommon/react/renderer/components/textinput/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.cpp +30 -19
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.h +12 -11
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/conversions.h +5 -5
- package/ReactCommon/react/renderer/components/unimplementedview/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/view/AccessibilityPrimitives.h +1 -1
- package/ReactCommon/react/renderer/components/view/AccessibilityProps.cpp +21 -1
- package/ReactCommon/react/renderer/components/view/AccessibilityProps.h +8 -6
- package/ReactCommon/react/renderer/components/view/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/components/view/ConcreteViewShadowNode.h +16 -6
- package/ReactCommon/react/renderer/components/view/ViewShadowNode.cpp +2 -1
- package/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp +2 -11
- package/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.h +0 -2
- package/ReactCommon/react/renderer/components/view/conversions.h +135 -79
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +18 -0
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.h +1 -0
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewTraitsInitializer.h +6 -1
- package/ReactCommon/react/renderer/components/view/platform/cxx/react/renderer/components/view/HostPlatformViewTraitsInitializer.h +4 -0
- package/ReactCommon/react/renderer/consistency/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/core/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/core/ConcreteShadowNode.h +2 -3
- package/ReactCommon/react/renderer/core/ConcreteState.h +23 -2
- package/ReactCommon/react/renderer/core/DynamicEventPayload.cpp +44 -0
- package/ReactCommon/react/renderer/core/DynamicEventPayload.h +30 -0
- package/ReactCommon/react/renderer/core/EventEmitter.cpp +7 -9
- package/ReactCommon/react/renderer/core/EventEmitter.h +2 -3
- package/ReactCommon/react/renderer/core/EventPayload.h +13 -0
- package/ReactCommon/react/renderer/core/EventQueue.cpp +26 -26
- package/ReactCommon/react/renderer/core/EventQueueProcessor.cpp +2 -0
- package/ReactCommon/react/renderer/core/RawEvent.cpp +4 -2
- package/ReactCommon/react/renderer/core/RawEvent.h +10 -2
- package/ReactCommon/react/renderer/core/RawProps.cpp +1 -99
- package/ReactCommon/react/renderer/core/RawProps.h +0 -11
- package/ReactCommon/react/renderer/core/ReactEventPriority.h +5 -0
- package/ReactCommon/react/renderer/core/ShadowNode.cpp +4 -4
- package/ReactCommon/react/renderer/core/ShadowNodeTraits.h +3 -0
- package/ReactCommon/react/renderer/core/State.h +2 -0
- package/ReactCommon/react/renderer/core/graphicsConversions.h +25 -17
- package/ReactCommon/react/renderer/core/tests/RawPropsTest.cpp +0 -36
- package/ReactCommon/react/renderer/core/tests/TestComponent.h +0 -4
- package/ReactCommon/react/renderer/css/CMakeLists.txt +7 -7
- package/ReactCommon/react/renderer/css/CSSTokenizer.h +12 -49
- package/ReactCommon/react/renderer/css/tests/CSSTokenizerTest.cpp +10 -0
- package/ReactCommon/react/renderer/debug/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/debug/DebugStringConvertible.cpp +27 -16
- package/ReactCommon/react/renderer/debug/DebugStringConvertible.h +14 -5
- package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +2 -16
- package/ReactCommon/react/renderer/dom/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/element/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/graphics/BackgroundImage.h +2 -1
- package/ReactCommon/react/renderer/graphics/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/graphics/ColorStop.h +28 -0
- package/ReactCommon/react/renderer/graphics/LinearGradient.h +1 -12
- package/ReactCommon/react/renderer/graphics/RadialGradient.h +92 -0
- package/ReactCommon/react/renderer/graphics/React-graphics.podspec +2 -19
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.h +2 -2
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.mm +2 -2
- package/ReactCommon/react/renderer/imagemanager/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/ImageManager.cpp +1 -7
- package/ReactCommon/react/renderer/imagemanager/platform/ios/React-ImageManager.podspec +1 -13
- package/ReactCommon/react/renderer/leakchecker/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/mapbuffer/CMakeLists.txt +3 -8
- package/ReactCommon/react/renderer/mounting/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/mounting/Differentiator.cpp +73 -55
- package/ReactCommon/react/renderer/mounting/MountingCoordinator.cpp +5 -0
- package/ReactCommon/react/renderer/mounting/ShadowTree.cpp +6 -7
- package/ReactCommon/react/renderer/mounting/ShadowTree.h +47 -36
- package/ReactCommon/react/renderer/mounting/ShadowTreeDelegate.h +3 -1
- package/ReactCommon/react/renderer/mounting/tests/OrderIndexTest.cpp +44 -12
- package/ReactCommon/react/renderer/mounting/tests/ShadowTreeLifeCycleTest.cpp +39 -6
- package/ReactCommon/react/renderer/mounting/tests/StackingContextTest.cpp +41 -12
- package/ReactCommon/react/renderer/mounting/tests/StateReconciliationTest.cpp +2 -1
- package/ReactCommon/react/renderer/observers/events/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.cpp +0 -25
- package/ReactCommon/react/renderer/observers/mutation/MutationObserverManager.cpp +5 -2
- package/ReactCommon/react/renderer/observers/mutation/MutationObserverManager.h +3 -1
- package/ReactCommon/react/renderer/runtimescheduler/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +2 -11
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +14 -20
- package/ReactCommon/react/renderer/runtimescheduler/tests/RuntimeSchedulerTest.cpp +22 -10
- package/ReactCommon/react/renderer/scheduler/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/scheduler/Scheduler.cpp +43 -20
- package/ReactCommon/react/renderer/scheduler/Scheduler.h +15 -1
- package/ReactCommon/react/renderer/scheduler/SchedulerDelegate.h +4 -0
- package/ReactCommon/react/renderer/scheduler/SurfaceHandler.cpp +84 -1
- package/ReactCommon/react/renderer/scheduler/SurfaceHandler.h +8 -0
- package/ReactCommon/react/renderer/telemetry/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/textlayoutmanager/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/textlayoutmanager/TextLayoutContext.h +7 -11
- package/ReactCommon/react/renderer/textlayoutmanager/TextLayoutManagerExtended.h +124 -0
- package/ReactCommon/react/renderer/textlayoutmanager/TextMeasureCache.h +7 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager/JPreparedLayout.h +20 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager/TextLayoutManager.cpp +126 -19
- package/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager/TextLayoutManager.h +100 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/cxx/{TextLayoutManager.cpp → react/renderer/textlayoutmanager/TextLayoutManager.cpp} +1 -18
- package/ReactCommon/react/renderer/textlayoutmanager/platform/cxx/react/renderer/textlayoutmanager/TextLayoutManager.h +57 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.h +3 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +47 -24
- package/ReactCommon/react/renderer/textlayoutmanager/{TextLayoutManager.h → platform/ios/react/renderer/textlayoutmanager/TextLayoutManager.h} +2 -29
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/TextLayoutManager.mm +2 -0
- package/ReactCommon/react/renderer/uimanager/CMakeLists.txt +4 -8
- package/ReactCommon/react/renderer/uimanager/UIManager.cpp +54 -23
- package/ReactCommon/react/renderer/uimanager/UIManager.h +27 -7
- package/ReactCommon/react/renderer/uimanager/UIManagerBinding.cpp +11 -1
- package/ReactCommon/react/renderer/uimanager/UIManagerCommitHook.h +19 -1
- package/ReactCommon/react/renderer/uimanager/UIManagerDelegate.h +30 -0
- package/ReactCommon/react/renderer/uimanager/UIManagerNativeAnimatedDelegate.h +24 -0
- package/ReactCommon/react/renderer/uimanager/UIManagerUpdateShadowTree.cpp +223 -0
- package/ReactCommon/react/renderer/uimanager/consistency/CMakeLists.txt +3 -7
- package/ReactCommon/react/renderer/uimanager/consistency/tests/LazyShadowTreeRevisionConsistencyManagerTest.cpp +2 -1
- package/ReactCommon/react/runtime/CMakeLists.txt +4 -7
- package/ReactCommon/react/runtime/React-RuntimeCore.podspec +4 -13
- package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +4 -11
- package/ReactCommon/react/runtime/ReactInstance.cpp +10 -5
- package/ReactCommon/react/runtime/ReactInstance.h +2 -1
- package/ReactCommon/react/runtime/TimerManager.cpp +6 -4
- package/ReactCommon/react/runtime/TimerManager.h +3 -1
- package/ReactCommon/react/runtime/hermes/CMakeLists.txt +2 -1
- package/ReactCommon/react/runtime/iostests/RCTHostTests.mm +1 -0
- package/ReactCommon/react/runtime/nativeviewconfig/CMakeLists.txt +2 -1
- package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +2 -11
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.h +2 -0
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +17 -5
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.h +2 -0
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +64 -4
- package/ReactCommon/react/runtime/tests/cxx/ReactInstanceTest.cpp +9 -5
- package/ReactCommon/react/test_utils/shadowTreeGeneration.h +0 -3
- package/ReactCommon/react/timing/CMakeLists.txt +3 -6
- package/ReactCommon/react/utils/CMakeLists.txt +9 -9
- package/ReactCommon/react/utils/React-utils.podspec +13 -17
- package/ReactCommon/react/utils/platform/android/react/utils/LowPriorityExecutor.cpp +95 -0
- package/{ReactAndroid/src/main/java/com/facebook/react/bridge/MemoryPressure.kt → ReactCommon/react/utils/platform/android/react/utils/LowPriorityExecutor.h} +6 -6
- package/ReactCommon/react/utils/platform/cxx/react/utils/LowPriorityExecutor.h +18 -0
- package/ReactCommon/react/utils/platform/ios/react/utils/LowPriorityExecutor.h +16 -0
- package/ReactCommon/react/utils/platform/ios/react/utils/LowPriorityExecutor.mm +22 -0
- package/ReactCommon/reactperflogger/CMakeLists.txt +3 -7
- package/ReactCommon/reactperflogger/React-perflogger.podspec +2 -12
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfettoLogger.cpp +7 -3
- package/ReactCommon/runtimeexecutor/CMakeLists.txt +3 -6
- package/ReactCommon/runtimeexecutor/React-runtimeexecutor.podspec +0 -6
- package/ReactCommon/runtimeexecutor/ReactCommon/RuntimeExecutor.h +0 -12
- package/ReactCommon/yoga/cmake/project-defaults.cmake +4 -4
- package/ReactCommon/yoga/yoga/debug/AssertFatal.cpp +1 -0
- package/ReactCommon/yoga/yoga/event/event.h +6 -6
- package/flow/global.js +1 -0
- package/gradle/libs.versions.toml +17 -6
- package/index.js +54 -334
- package/interface.js +0 -4
- package/jest/resolver.js +31 -0
- package/jest-preset.js +1 -0
- package/package.json +105 -34
- package/scripts/cocoapods/fabric.rb +0 -1
- package/scripts/cocoapods/helpers.rb +12 -1
- package/scripts/cocoapods/new_architecture.rb +46 -17
- package/scripts/cocoapods/rndependencies.rb +211 -0
- package/scripts/cocoapods/utils.rb +2 -0
- package/scripts/codegen/generate-artifacts-executor/constants.js +80 -0
- package/scripts/codegen/generate-artifacts-executor/generateAppDependencyProvider.js +66 -0
- package/scripts/codegen/generate-artifacts-executor/generateCustomURLHandlers.js +116 -0
- package/scripts/codegen/generate-artifacts-executor/generateFBReactNativeSpecIOS.js +39 -0
- package/scripts/codegen/generate-artifacts-executor/generateNativeCode.js +114 -0
- package/scripts/codegen/generate-artifacts-executor/generateRCTModuleProviders.js +120 -0
- package/scripts/codegen/generate-artifacts-executor/generateRCTThirdPartyComponents.js +223 -0
- package/scripts/codegen/generate-artifacts-executor/generateRNCoreComponentsIOS.js +38 -0
- package/scripts/codegen/generate-artifacts-executor/generateReactCodegenPodspec.js +93 -0
- package/scripts/codegen/generate-artifacts-executor/generateSchemaInfos.js +113 -0
- package/scripts/codegen/generate-artifacts-executor/generateUnstableModulesRequiringMainQueueSetupProvider.js +92 -0
- package/scripts/codegen/generate-artifacts-executor/index.js +232 -0
- package/scripts/codegen/generate-artifacts-executor/utils.js +399 -0
- package/scripts/codegen/templates/RCTAppDependencyProviderMM.template +5 -0
- package/{React/Base/UIKitProxies/RCTInitializeUIKitProxies.h → scripts/codegen/templates/RCTUnstableModulesRequiringMainQueueSetupProviderH.template} +5 -1
- package/scripts/codegen/templates/RCTUnstableModulesRequiringMainQueueSetupProviderMM.template +19 -0
- package/scripts/codegen/templates/ReactCodegen.podspec.template +2 -8
- package/scripts/generate-codegen-artifacts.js +1 -1
- package/scripts/react_native_pods.rb +18 -7
- package/sdks/.hermesversion +1 -1
- package/sdks/hermes-engine/hermes-utils.rb +7 -0
- package/sdks/hermes-engine/utils/build-apple-framework.sh +4 -1
- package/sdks/hermes-engine/utils/build-hermes-xcode.sh +4 -3
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/sdks/hermesc/win64-bin/msvcp140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140_1.dll +0 -0
- package/src/private/animated/NativeAnimatedHelper.js +21 -8
- package/src/private/animated/createAnimatedPropsHook.js +11 -16
- package/src/private/animated/createAnimatedPropsMemoHook.js +1 -2
- package/src/private/components/{SafeAreaView_INTERNAL_DO_NOT_USE.js → safeareaview/SafeAreaView_INTERNAL_DO_NOT_USE.js} +6 -6
- package/src/private/components/{HScrollViewNativeComponents.js → scrollview/HScrollViewNativeComponents.js} +8 -8
- package/src/private/components/scrollview/VScrollViewNativeComponents.js +25 -0
- package/src/private/{devmenu → devsupport/devmenu}/DevMenu.js +1 -1
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/BorderBox.js +3 -3
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/BoxInspector.js +6 -5
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/ElementBox.js +8 -6
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/ElementProperties.js +11 -10
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/Inspector.js +14 -12
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/InspectorOverlay.js +5 -4
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/InspectorPanel.js +9 -8
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/NetworkOverlay.js +10 -9
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/ReactDevToolsOverlay.js +7 -7
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/StyleInspector.js +7 -6
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/XHRInterceptor.js +2 -2
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/getInspectorDataForViewAtPoint.js +4 -4
- package/src/private/{inspector → devsupport/devmenu/elementinspector}/resolveBoxStyle.js +1 -1
- package/src/private/{inspector → devsupport/devmenu/perfmonitor}/PerformanceOverlay.js +6 -5
- package/src/private/{specs_DEPRECATED/modules → devsupport/devmenu/specs}/NativeDevMenu.js +2 -2
- package/src/private/{debugging → devsupport/rndevtools}/ReactDevToolsSettingsManager.android.js +1 -1
- package/src/private/{debugging → devsupport/rndevtools}/ReactDevToolsSettingsManager.ios.js +1 -1
- package/src/private/{debugging → devsupport/rndevtools}/setUpFuseboxReactDevToolsDispatcher.js +1 -1
- package/src/private/{fusebox → devsupport/rndevtools}/specs/NativeReactDevToolsRuntimeSettingsModule.js +2 -2
- package/src/private/{specs_DEPRECATED/modules → devsupport/rndevtools/specs}/NativeReactDevToolsSettingsManager.js +2 -2
- package/src/private/featureflags/ReactNativeFeatureFlags.js +72 -80
- package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +9 -1
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +15 -13
- package/src/private/renderer/errorhandling/ErrorHandlers.js +2 -2
- package/src/private/specs_DEPRECATED/modules/NativeAnimatedModule.js +1 -1
- package/src/private/specs_DEPRECATED/modules/NativeAnimatedTurboModule.js +1 -1
- package/src/private/specs_DEPRECATED/modules/NativeSampleTurboModule.js +3 -0
- package/src/private/styles/composeStyles.js +12 -5
- package/src/private/types/HostComponent.js +1 -1
- package/src/private/types/HostInstance.js +67 -1
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +2 -5
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +5 -18
- package/src/private/webapis/dom/nodes/internals/NodeInternals.js +6 -0
- package/src/private/webapis/performance/Performance.js +1 -3
- package/src/private/webapis/performance/PerformanceEntry.js +6 -1
- package/src/private/webapis/performance/internals/RawPerformanceEntry.js +3 -0
- package/src/private/webapis/performance/specs/NativePerformance.js +10 -1
- package/src/types/bom.js.flow +96 -0
- package/src/types/cssom.js.flow +576 -0
- package/src/types/dom.js.flow +19 -0
- package/src/types/globals.d.ts +42 -0
- package/src/types/streams.js.flow +141 -0
- package/third-party-podspecs/RCT-Folly.podspec +7 -6
- package/third-party-podspecs/ReactNativeDependencies.podspec +86 -0
- package/third-party-podspecs/fast_float.podspec +2 -2
- package/third-party-podspecs/replace_dependencies_version.js +107 -0
- package/types/index.d.ts +6 -3
- package/types/public/ReactNativeTVTypes.d.ts +42 -42
- package/types/public/ReactNativeTypes.d.ts +2 -2
- package/types/tsconfig.test.json +16 -0
- package/Libraries/BatchedBridge/__mocks__/MessageQueueTestConfig.js +0 -38
- package/Libraries/BatchedBridge/__mocks__/MessageQueueTestModule.js +0 -22
- package/Libraries/Blob/FileReader_new.js +0 -231
- package/Libraries/Blob/FileReader_old.js +0 -186
- package/Libraries/Blob/__mocks__/FileReaderModule.js +0 -20
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +0 -32
- package/Libraries/Core/__mocks__/ErrorUtils.js +0 -33
- package/Libraries/Core/__mocks__/NativeExceptionsManager.js +0 -19
- package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +0 -49
- package/Libraries/Events/CustomEvent.js +0 -32
- package/Libraries/Events/EventPolyfill.js +0 -239
- package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +0 -118
- package/Libraries/Lists/__flowtests__/SectionList-flowtest.js +0 -134
- package/Libraries/Network/XMLHttpRequest_new.js +0 -794
- package/Libraries/Network/XMLHttpRequest_old.js +0 -701
- package/Libraries/NewAppScreen/components/DebugInstructions.js +0 -48
- package/Libraries/NewAppScreen/components/Header.js +0 -77
- package/Libraries/NewAppScreen/components/HermesBadge.js +0 -72
- package/Libraries/NewAppScreen/components/LearnMoreLinks.js +0 -148
- package/Libraries/NewAppScreen/components/ReloadInstructions.js +0 -39
- package/Libraries/NewAppScreen/components/logo.png +0 -0
- package/Libraries/NewAppScreen/index.js +0 -25
- package/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js +0 -58
- package/Libraries/Utilities/__mocks__/BackHandler.js +0 -45
- package/Libraries/Utilities/__mocks__/GlobalPerformanceLogger.js +0 -16
- package/Libraries/Utilities/__mocks__/PixelRatio.js +0 -25
- package/Libraries/WebSocket/WebSocketEvent.js +0 -30
- package/Libraries/WebSocket/WebSocket_new.js +0 -325
- package/Libraries/WebSocket/WebSocket_old.js +0 -297
- package/Libraries/WebSocket/__mocks__/event-target-shim.js +0 -27
- package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +0 -30
- package/Libraries/vendor/emitter/__flowtests__/EventEmitter-flowtest.js +0 -81
- package/React/Base/UIKitProxies/RCTInitialAccessibilityValuesProxy.h +0 -30
- package/React/Base/UIKitProxies/RCTInitialAccessibilityValuesProxy.mm +0 -185
- package/React/Base/UIKitProxies/RCTInitializeUIKitProxies.mm +0 -23
- package/React/Base/UIKitProxies/RCTKeyWindowValuesProxy.h +0 -25
- package/React/Base/UIKitProxies/RCTKeyWindowValuesProxy.mm +0 -129
- package/React/Base/UIKitProxies/RCTTraitCollectionProxy.h +0 -26
- package/React/Base/UIKitProxies/RCTTraitCollectionProxy.mm +0 -80
- package/React/Base/UIKitProxies/RCTWindowSafeAreaProxy.h +0 -26
- package/React/Base/UIKitProxies/RCTWindowSafeAreaProxy.mm +0 -70
- package/React/Fabric/Utils/RCTViewFinder.mm +0 -34
- package/ReactAndroid/src/main/java/com/facebook/annotationprocessors/common/ProcessorBase.kt +0 -23
- package/ReactAndroid/src/main/java/com/facebook/proguard/annotations/KeepGettersAndSetters.kt +0 -24
- package/ReactAndroid/src/main/java/com/facebook/proguard/annotations/proguard_annotations.pro +0 -21
- package/ReactAndroid/src/main/java/com/facebook/react/DebugCorePackage.java +0 -84
- package/ReactAndroid/src/main/java/com/facebook/react/MemoryPressureRouter.java +0 -59
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java +0 -1240
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java +0 -900
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ActivityEventListener.java +0 -29
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/BaseActivityEventListener.java +0 -29
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CallbackImpl.java +0 -37
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ColorPropConverter.java +0 -234
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxModuleWrapperBase.java +0 -57
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromArray.java +0 -103
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromMap.java +0 -110
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DynamicFromObject.java +0 -89
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/GuardedAsyncTask.java +0 -42
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/GuardedRunnable.java +0 -36
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/Inspector.java +0 -110
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/InvalidIteratorException.kt +0 -18
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSBundleLoader.java +0 -97
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSONArguments.java +0 -110
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaModuleWrapper.java +0 -148
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptContextHolder.java +0 -33
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaScriptExecutor.java +0 -31
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JsonWriterHelper.java +0 -155
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactBridge.kt +0 -48
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactCxxErrorHandler.java +0 -39
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UiThreadUtil.java +0 -75
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/bridge.pro +0 -12
- package/ReactAndroid/src/main/java/com/facebook/react/common/SingleThreadAsserter.kt +0 -23
- package/ReactAndroid/src/main/java/com/facebook/react/common/StandardCharsets.kt +0 -31
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgeDevSupportManager.java +0 -128
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgelessDevSupportManager.java +0 -124
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BundleDownloader.java +0 -313
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.java +0 -174
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DebugOverlayController.java +0 -117
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java +0 -495
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.java +0 -1121
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerFactory.java +0 -56
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportSoLoader.kt +0 -24
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/JSDebuggerWebSocketClient.java +0 -244
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/MultipartStreamReader.java +0 -166
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReactInstanceDevHelper.java +0 -47
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/StackTraceHelper.java +0 -300
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevSplitBundleCallback.kt +0 -17
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/DevToolsReactPerfLogger.java +0 -239
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/StateWrapperImpl.java +0 -103
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/IntBufferBatchMountItem.java +0 -329
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEvent.kt +0 -40
- package/ReactAndroid/src/main/java/com/facebook/react/interfaces/fabric/SurfaceHandler.kt +0 -40
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/NativeModuleSoLoader.kt +0 -25
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleInteropUtils.java +0 -288
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleManager.java +0 -474
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModuleManagerDelegate.java +0 -76
- package/ReactAndroid/src/main/java/com/facebook/react/module/processing/ReactModuleSpecProcessor.java +0 -253
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobModule.java +0 -383
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobProvider.java +0 -126
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/FileReaderModule.java +0 -103
- package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ChoreographerCompat.kt +0 -16
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/AlertFragment.java +0 -204
- package/ReactAndroid/src/main/java/com/facebook/react/modules/dialog/DialogModule.java +0 -240
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkingModule.java +0 -785
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressResponseBody.java +0 -68
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +0 -22
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/FileIoHandler.java +0 -191
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/JSPackagerClient.java +0 -143
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/ReconnectingWebSocket.java +0 -193
- package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactLegacyArchitectureProcessor.kt +0 -48
- package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java +0 -765
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessAtomicRef.java +0 -131
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessReactContext.java +0 -209
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/CoreReactPackage.java +0 -138
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +0 -634
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactLifecycleStateManager.java +0 -90
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactSurfaceImpl.java +0 -255
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Task.java +0 -555
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/UnobservedErrorNotifier.kt +0 -27
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/UnobservedTaskException.kt +0 -11
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/OnLayoutEvent.java +0 -80
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroupHelper.java +0 -65
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactInvalidPropertyException.kt +0 -16
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactStylesDiffMap.java +0 -99
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ShadowNodeRegistry.java +0 -87
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/TouchTargetHelper.java +0 -448
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/TransformHelper.java +0 -231
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModuleConstants.java +0 -119
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewAtIndex.java +0 -46
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewGroupDrawingOrderHelper.java +0 -127
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewGroupManager.java +0 -116
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactProp.java +0 -109
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactPropGroup.java +0 -97
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations/ReactPropertyHolder.java +0 -19
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/Event.java +0 -220
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/AbstractLayoutAnimation.java +0 -116
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/BaseLayoutAnimation.java +0 -86
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutAnimationController.java +0 -224
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/OpacityAnimation.java +0 -72
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/PositionAndSizeAnimation.java +0 -69
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ModalHostHelper.kt +0 -63
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ModalHostShadowNode.kt +0 -31
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/MaintainVisibleScrollPositionHelper.java +0 -213
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollViewManager.java +0 -361
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java +0 -409
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextShadowNode.java +0 -47
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextAnchorViewManager.java +0 -233
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageShadowNode.java +0 -163
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageSpan.java +0 -185
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactContentSizeChangedEvent.java +0 -54
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java +0 -1493
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditTextInputConnectionWrapper.java +0 -160
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextChangedEvent.java +0 -52
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputBlurEvent.java +0 -47
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputEndEditingEvent.java +0 -54
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputFocusEvent.java +0 -47
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputKeyPressEvent.java +0 -51
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputLocalData.java +0 -44
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.java +0 -1390
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputSelectionEvent.java +0 -53
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputShadowNode.java +0 -236
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputSubmitEditingEvent.java +0 -52
- package/ReactAndroid/src/main/jni/prebuilt/lib/DUMMY +0 -1
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/LegacyViewManagerInteropViewEventEmitter.cpp +0 -18
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/LegacyViewManagerInteropViewEventEmitter.h +0 -31
- package/ReactCommon/react/renderer/textlayoutmanager/TextLayoutManager.cpp +0 -26
- package/ReactCommon/react/renderer/uimanager/consistency/LatestShadowTreeRevisionProvider.cpp +0 -29
- package/ReactCommon/react/renderer/uimanager/consistency/LatestShadowTreeRevisionProvider.h +0 -35
- package/android/README.md +0 -21
- package/flow/jest.js +0 -1287
- package/jest/__tests__/setup-test.js +0 -18
- package/scripts/codegen/generate-artifacts-executor.js +0 -1118
- package/src/private/components/VScrollViewNativeComponents.js +0 -25
- package/src/private/featureflags/README.md +0 -5
- package/src/private/specs_DEPRECATED/README.md +0 -7
- package/src/private/utilities/ensureInstance.js +0 -21
- package/src/private/webapis/performance/specs/__mocks__/NativePerformanceMock.js +0 -267
- package/types/modules/LaunchScreen.d.ts +0 -18
- /package/ReactCommon/jsinspector-modern/{CdpJson.cpp → cdp/CdpJson.cpp} +0 -0
- /package/ReactCommon/jsinspector-modern/{CdpJson.h → cdp/CdpJson.h} +0 -0
- /package/src/private/{devmenu → devsupport/devmenu}/DevMenu.d.ts +0 -0
- /package/src/private/{debugging → devsupport/rndevtools}/FuseboxSessionObserver.js +0 -0
- /package/src/private/{debugging → devsupport/rndevtools}/ReactDevToolsSettingsManager.js.flow +0 -0
|
@@ -12,7 +12,7 @@ public class com/facebook/react/CoreModulesPackage$$ReactModuleInfoProvider : co
|
|
|
12
12
|
public fun getReactModuleInfos ()Ljava/util/Map;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
public class com/facebook/react/DebugCorePackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
15
|
+
public final class com/facebook/react/DebugCorePackage : com/facebook/react/BaseReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
|
|
16
16
|
public fun <init> ()V
|
|
17
17
|
public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
|
|
18
18
|
public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
@@ -63,14 +63,14 @@ public abstract class com/facebook/react/LazyReactPackage : com/facebook/react/R
|
|
|
63
63
|
public fun getViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
public class com/facebook/react/MemoryPressureRouter : android/content/ComponentCallbacks2 {
|
|
66
|
+
public final class com/facebook/react/MemoryPressureRouter : android/content/ComponentCallbacks2 {
|
|
67
67
|
public fun <init> (Landroid/content/Context;)V
|
|
68
|
-
public fun addMemoryPressureListener (Lcom/facebook/react/bridge/MemoryPressureListener;)V
|
|
69
|
-
public fun destroy (Landroid/content/Context;)V
|
|
68
|
+
public final fun addMemoryPressureListener (Lcom/facebook/react/bridge/MemoryPressureListener;)V
|
|
69
|
+
public final fun destroy (Landroid/content/Context;)V
|
|
70
70
|
public fun onConfigurationChanged (Landroid/content/res/Configuration;)V
|
|
71
71
|
public fun onLowMemory ()V
|
|
72
72
|
public fun onTrimMemory (I)V
|
|
73
|
-
public fun removeMemoryPressureListener (Lcom/facebook/react/bridge/MemoryPressureListener;)V
|
|
73
|
+
public final fun removeMemoryPressureListener (Lcom/facebook/react/bridge/MemoryPressureListener;)V
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
public final class com/facebook/react/NativeModuleRegistryBuilder {
|
|
@@ -440,24 +440,17 @@ public abstract interface class com/facebook/react/ViewManagerOnDemandReactPacka
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
public abstract class com/facebook/react/animated/AnimatedNode {
|
|
443
|
-
public static final field Companion Lcom/facebook/react/animated/AnimatedNode$Companion;
|
|
444
|
-
public static final field DEFAULT_ANIMATED_NODE_CHILD_COUNT I
|
|
445
|
-
public static final field INITIAL_BFS_COLOR I
|
|
446
443
|
public fun <init> ()V
|
|
447
|
-
public final fun addChild (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
448
|
-
public fun onAttachedToNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
449
|
-
public fun onDetachedFromNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
450
|
-
public abstract fun prettyPrint ()Ljava/lang/String;
|
|
451
|
-
public final fun prettyPrintWithChildren ()Ljava/lang/String;
|
|
452
|
-
public final fun removeChild (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
453
|
-
public fun update ()V
|
|
454
444
|
}
|
|
455
445
|
|
|
456
|
-
public
|
|
446
|
+
public abstract interface class com/facebook/react/animated/AnimatedNodeValueListener {
|
|
447
|
+
public abstract fun onValueUpdate (DD)V
|
|
457
448
|
}
|
|
458
449
|
|
|
459
|
-
public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbreact/specs/NativeAnimatedModuleSpec, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManagerListener {
|
|
450
|
+
public final class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbreact/specs/NativeAnimatedModuleSpec, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManagerListener {
|
|
460
451
|
public static final field ANIMATED_MODULE_DEBUG Z
|
|
452
|
+
public static final field Companion Lcom/facebook/react/animated/NativeAnimatedModule$Companion;
|
|
453
|
+
public static final field NAME Ljava/lang/String;
|
|
461
454
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
462
455
|
public fun addAnimatedEventToView (DLjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
463
456
|
public fun addListener (Ljava/lang/String;)V
|
|
@@ -473,7 +466,7 @@ public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbr
|
|
|
473
466
|
public fun extractAnimatedNodeOffset (D)V
|
|
474
467
|
public fun finishOperationBatch ()V
|
|
475
468
|
public fun flattenAnimatedNodeOffset (D)V
|
|
476
|
-
public fun getNodesManager ()Lcom/facebook/react/animated/NativeAnimatedNodesManager;
|
|
469
|
+
public final fun getNodesManager ()Lcom/facebook/react/animated/NativeAnimatedNodesManager;
|
|
477
470
|
public fun getValue (DLcom/facebook/react/bridge/Callback;)V
|
|
478
471
|
public fun initialize ()V
|
|
479
472
|
public fun invalidate ()V
|
|
@@ -492,37 +485,40 @@ public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbr
|
|
|
492
485
|
public fun stopAnimation (D)V
|
|
493
486
|
public fun stopListeningToAnimatedNodeValue (D)V
|
|
494
487
|
public fun updateAnimatedNodeConfig (DLcom/facebook/react/bridge/ReadableMap;)V
|
|
495
|
-
public fun userDrivenScrollEnded (I)V
|
|
488
|
+
public final fun userDrivenScrollEnded (I)V
|
|
496
489
|
public fun willDispatchViewUpdates (Lcom/facebook/react/bridge/UIManager;)V
|
|
497
490
|
public fun willMountItems (Lcom/facebook/react/bridge/UIManager;)V
|
|
498
491
|
}
|
|
499
492
|
|
|
500
|
-
public class com/facebook/react/animated/
|
|
493
|
+
public final class com/facebook/react/animated/NativeAnimatedModule$Companion {
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
public final class com/facebook/react/animated/NativeAnimatedNodesManager : com/facebook/react/uimanager/events/EventDispatcherListener {
|
|
501
497
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
502
|
-
public fun addAnimatedEventToView (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
503
|
-
public fun connectAnimatedNodeToView (II)V
|
|
504
|
-
public fun connectAnimatedNodes (II)V
|
|
505
|
-
public fun createAnimatedNode (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
506
|
-
public fun disconnectAnimatedNodeFromView (II)V
|
|
507
|
-
public fun disconnectAnimatedNodes (II)V
|
|
508
|
-
public fun dropAnimatedNode (I)V
|
|
509
|
-
public fun extractAnimatedNodeOffset (I)V
|
|
510
|
-
public fun flattenAnimatedNodeOffset (I)V
|
|
511
|
-
public fun getNodeById (I)Lcom/facebook/react/animated/AnimatedNode;
|
|
512
|
-
public fun getValue (ILcom/facebook/react/bridge/Callback;)V
|
|
513
|
-
public fun hasActiveAnimations ()Z
|
|
514
|
-
public fun initializeEventListenerForUIManagerType (I)V
|
|
498
|
+
public final fun addAnimatedEventToView (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
499
|
+
public final fun connectAnimatedNodeToView (II)V
|
|
500
|
+
public final fun connectAnimatedNodes (II)V
|
|
501
|
+
public final fun createAnimatedNode (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
502
|
+
public final fun disconnectAnimatedNodeFromView (II)V
|
|
503
|
+
public final fun disconnectAnimatedNodes (II)V
|
|
504
|
+
public final fun dropAnimatedNode (I)V
|
|
505
|
+
public final fun extractAnimatedNodeOffset (I)V
|
|
506
|
+
public final fun flattenAnimatedNodeOffset (I)V
|
|
507
|
+
public final fun getNodeById (I)Lcom/facebook/react/animated/AnimatedNode;
|
|
508
|
+
public final fun getValue (ILcom/facebook/react/bridge/Callback;)V
|
|
509
|
+
public final fun hasActiveAnimations ()Z
|
|
510
|
+
public final fun initializeEventListenerForUIManagerType (I)V
|
|
515
511
|
public fun onEventDispatch (Lcom/facebook/react/uimanager/events/Event;)V
|
|
516
|
-
public fun removeAnimatedEventFromView (ILjava/lang/String;I)V
|
|
517
|
-
public fun restoreDefaultValues (I)V
|
|
518
|
-
public fun runUpdates (J)V
|
|
519
|
-
public fun setAnimatedNodeOffset (ID)V
|
|
520
|
-
public fun setAnimatedNodeValue (ID)V
|
|
521
|
-
public fun startAnimatingNode (IILcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Callback;)V
|
|
522
|
-
public fun startListeningToAnimatedNodeValue (ILcom/facebook/react/animated/AnimatedNodeValueListener;)V
|
|
523
|
-
public fun stopAnimation (I)V
|
|
524
|
-
public fun stopListeningToAnimatedNodeValue (I)V
|
|
525
|
-
public fun updateAnimatedNodeConfig (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
512
|
+
public final fun removeAnimatedEventFromView (ILjava/lang/String;I)V
|
|
513
|
+
public final fun restoreDefaultValues (I)V
|
|
514
|
+
public final fun runUpdates (J)V
|
|
515
|
+
public final fun setAnimatedNodeOffset (ID)V
|
|
516
|
+
public final fun setAnimatedNodeValue (ID)V
|
|
517
|
+
public final fun startAnimatingNode (IILcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Callback;)V
|
|
518
|
+
public final fun startListeningToAnimatedNodeValue (ILcom/facebook/react/animated/AnimatedNodeValueListener;)V
|
|
519
|
+
public final fun stopAnimation (I)V
|
|
520
|
+
public final fun stopListeningToAnimatedNodeValue (I)V
|
|
521
|
+
public final fun updateAnimatedNodeConfig (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
526
522
|
}
|
|
527
523
|
|
|
528
524
|
public abstract interface class com/facebook/react/bridge/ActivityEventListener {
|
|
@@ -582,11 +578,6 @@ public abstract interface class com/facebook/react/bridge/Callback {
|
|
|
582
578
|
public abstract fun invoke ([Ljava/lang/Object;)V
|
|
583
579
|
}
|
|
584
580
|
|
|
585
|
-
public final class com/facebook/react/bridge/CallbackImpl : com/facebook/react/bridge/Callback {
|
|
586
|
-
public fun <init> (Lcom/facebook/react/bridge/JSInstance;I)V
|
|
587
|
-
public fun invoke ([Ljava/lang/Object;)V
|
|
588
|
-
}
|
|
589
|
-
|
|
590
581
|
public abstract interface class com/facebook/react/bridge/CatalystInstance : com/facebook/react/bridge/JSBundleLoaderDelegate, com/facebook/react/bridge/JSInstance, com/facebook/react/bridge/MemoryPressureListener {
|
|
591
582
|
public abstract fun addBridgeIdleDebugListener (Lcom/facebook/react/bridge/NotThreadSafeBridgeIdleDebugListener;)V
|
|
592
583
|
public abstract fun callFunction (Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/bridge/NativeArray;)V
|
|
@@ -671,12 +662,12 @@ public class com/facebook/react/bridge/CatalystInstanceImpl$PendingJSCall {
|
|
|
671
662
|
public fun toString ()Ljava/lang/String;
|
|
672
663
|
}
|
|
673
664
|
|
|
674
|
-
public class com/facebook/react/bridge/ColorPropConverter {
|
|
675
|
-
public
|
|
676
|
-
public static fun getColor (Ljava/lang/Object;Landroid/content/Context;)Ljava/lang/Integer;
|
|
677
|
-
public static fun getColor (Ljava/lang/Object;Landroid/content/Context;I)
|
|
678
|
-
public static fun getColorInstance (Ljava/lang/Object;Landroid/content/Context;)Landroid/graphics/Color;
|
|
679
|
-
public static fun resolveResourcePath (Landroid/content/Context;Ljava/lang/String;)Ljava/lang/Integer;
|
|
665
|
+
public final class com/facebook/react/bridge/ColorPropConverter {
|
|
666
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/ColorPropConverter;
|
|
667
|
+
public static final fun getColor (Ljava/lang/Object;Landroid/content/Context;)Ljava/lang/Integer;
|
|
668
|
+
public static final fun getColor (Ljava/lang/Object;Landroid/content/Context;I)I
|
|
669
|
+
public static final fun getColorInstance (Ljava/lang/Object;Landroid/content/Context;)Landroid/graphics/Color;
|
|
670
|
+
public static final fun resolveResourcePath (Landroid/content/Context;Ljava/lang/String;)Ljava/lang/Integer;
|
|
680
671
|
}
|
|
681
672
|
|
|
682
673
|
public final class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/Callback {
|
|
@@ -693,7 +684,7 @@ public class com/facebook/react/bridge/CxxModuleWrapperBase : com/facebook/react
|
|
|
693
684
|
public fun getName ()Ljava/lang/String;
|
|
694
685
|
public fun initialize ()V
|
|
695
686
|
public fun invalidate ()V
|
|
696
|
-
protected fun resetModule (Lcom/facebook/jni/HybridData;)V
|
|
687
|
+
protected final fun resetModule (Lcom/facebook/jni/HybridData;)V
|
|
697
688
|
}
|
|
698
689
|
|
|
699
690
|
public final class com/facebook/react/bridge/DefaultJSExceptionHandler : com/facebook/react/bridge/JSExceptionHandler {
|
|
@@ -713,7 +704,7 @@ public abstract interface class com/facebook/react/bridge/Dynamic {
|
|
|
713
704
|
public abstract fun recycle ()V
|
|
714
705
|
}
|
|
715
706
|
|
|
716
|
-
public class com/facebook/react/bridge/DynamicFromObject : com/facebook/react/bridge/Dynamic {
|
|
707
|
+
public final class com/facebook/react/bridge/DynamicFromObject : com/facebook/react/bridge/Dynamic {
|
|
717
708
|
public fun <init> (Ljava/lang/Object;)V
|
|
718
709
|
public fun asArray ()Lcom/facebook/react/bridge/ReadableArray;
|
|
719
710
|
public fun asBoolean ()Z
|
|
@@ -727,13 +718,18 @@ public class com/facebook/react/bridge/DynamicFromObject : com/facebook/react/br
|
|
|
727
718
|
}
|
|
728
719
|
|
|
729
720
|
public abstract class com/facebook/react/bridge/GuardedAsyncTask : android/os/AsyncTask {
|
|
721
|
+
public static final field Companion Lcom/facebook/react/bridge/GuardedAsyncTask$Companion;
|
|
722
|
+
public static final field THREAD_POOL_EXECUTOR Ljava/util/concurrent/Executor;
|
|
730
723
|
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
731
724
|
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
732
|
-
|
|
725
|
+
public synthetic fun doInBackground ([Ljava/lang/Object;)Ljava/lang/Object;
|
|
733
726
|
protected final fun doInBackground ([Ljava/lang/Object;)Ljava/lang/Void;
|
|
734
727
|
protected abstract fun doInBackgroundGuarded ([Ljava/lang/Object;)V
|
|
735
728
|
}
|
|
736
729
|
|
|
730
|
+
public final class com/facebook/react/bridge/GuardedAsyncTask$Companion {
|
|
731
|
+
}
|
|
732
|
+
|
|
737
733
|
public abstract class com/facebook/react/bridge/GuardedRunnable : java/lang/Runnable {
|
|
738
734
|
public fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
739
735
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
@@ -741,20 +737,26 @@ public abstract class com/facebook/react/bridge/GuardedRunnable : java/lang/Runn
|
|
|
741
737
|
public abstract fun runGuarded ()V
|
|
742
738
|
}
|
|
743
739
|
|
|
744
|
-
public class com/facebook/react/bridge/Inspector {
|
|
745
|
-
public static
|
|
746
|
-
public static fun
|
|
740
|
+
public final class com/facebook/react/bridge/Inspector {
|
|
741
|
+
public static final field Companion Lcom/facebook/react/bridge/Inspector$Companion;
|
|
742
|
+
public static final fun connect (ILcom/facebook/react/bridge/Inspector$RemoteConnection;)Lcom/facebook/react/bridge/Inspector$LocalConnection;
|
|
743
|
+
public static final fun getPages ()Ljava/util/List;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
public final class com/facebook/react/bridge/Inspector$Companion {
|
|
747
|
+
public final fun connect (ILcom/facebook/react/bridge/Inspector$RemoteConnection;)Lcom/facebook/react/bridge/Inspector$LocalConnection;
|
|
748
|
+
public final fun getPages ()Ljava/util/List;
|
|
747
749
|
}
|
|
748
750
|
|
|
749
|
-
public class com/facebook/react/bridge/Inspector$LocalConnection {
|
|
750
|
-
public fun disconnect ()V
|
|
751
|
-
public fun sendMessage (Ljava/lang/String;)V
|
|
751
|
+
public final class com/facebook/react/bridge/Inspector$LocalConnection {
|
|
752
|
+
public final fun disconnect ()V
|
|
753
|
+
public final fun sendMessage (Ljava/lang/String;)V
|
|
752
754
|
}
|
|
753
755
|
|
|
754
|
-
public class com/facebook/react/bridge/Inspector$Page {
|
|
755
|
-
public fun getId ()I
|
|
756
|
-
public fun getTitle ()Ljava/lang/String;
|
|
757
|
-
public fun getVM ()Ljava/lang/String;
|
|
756
|
+
public final class com/facebook/react/bridge/Inspector$Page {
|
|
757
|
+
public final fun getId ()I
|
|
758
|
+
public final fun getTitle ()Ljava/lang/String;
|
|
759
|
+
public final fun getVM ()Ljava/lang/String;
|
|
758
760
|
public fun toString ()Ljava/lang/String;
|
|
759
761
|
}
|
|
760
762
|
|
|
@@ -763,10 +765,6 @@ public abstract interface class com/facebook/react/bridge/Inspector$RemoteConnec
|
|
|
763
765
|
public abstract fun onMessage (Ljava/lang/String;)V
|
|
764
766
|
}
|
|
765
767
|
|
|
766
|
-
public final class com/facebook/react/bridge/InvalidIteratorException : java/lang/RuntimeException {
|
|
767
|
-
public fun <init> (Ljava/lang/String;)V
|
|
768
|
-
}
|
|
769
|
-
|
|
770
768
|
public class com/facebook/react/bridge/JSApplicationCausedNativeException : java/lang/RuntimeException {
|
|
771
769
|
public fun <init> (Ljava/lang/String;)V
|
|
772
770
|
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
@@ -778,15 +776,24 @@ public final class com/facebook/react/bridge/JSApplicationIllegalArgumentExcepti
|
|
|
778
776
|
}
|
|
779
777
|
|
|
780
778
|
public abstract class com/facebook/react/bridge/JSBundleLoader {
|
|
779
|
+
public static final field Companion Lcom/facebook/react/bridge/JSBundleLoader$Companion;
|
|
781
780
|
public fun <init> ()V
|
|
782
|
-
public static fun createAssetLoader (Landroid/content/Context;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
783
|
-
public static fun createCachedBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
784
|
-
public static fun createCachedSplitBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
785
|
-
public static fun createFileLoader (Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
786
|
-
public static fun createFileLoader (Ljava/lang/String;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
781
|
+
public static final fun createAssetLoader (Landroid/content/Context;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
782
|
+
public static final fun createCachedBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
783
|
+
public static final fun createCachedSplitBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
784
|
+
public static final fun createFileLoader (Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
785
|
+
public static final fun createFileLoader (Ljava/lang/String;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
787
786
|
public abstract fun loadScript (Lcom/facebook/react/bridge/JSBundleLoaderDelegate;)Ljava/lang/String;
|
|
788
787
|
}
|
|
789
788
|
|
|
789
|
+
public final class com/facebook/react/bridge/JSBundleLoader$Companion {
|
|
790
|
+
public final fun createAssetLoader (Landroid/content/Context;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
791
|
+
public final fun createCachedBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
792
|
+
public final fun createCachedSplitBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
793
|
+
public final fun createFileLoader (Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
794
|
+
public final fun createFileLoader (Ljava/lang/String;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
795
|
+
}
|
|
796
|
+
|
|
790
797
|
public abstract interface class com/facebook/react/bridge/JSBundleLoaderDelegate {
|
|
791
798
|
public abstract fun loadScriptFromAssets (Landroid/content/res/AssetManager;Ljava/lang/String;Z)V
|
|
792
799
|
public abstract fun loadScriptFromFile (Ljava/lang/String;Ljava/lang/String;Z)V
|
|
@@ -802,12 +809,12 @@ public abstract interface class com/facebook/react/bridge/JSInstance {
|
|
|
802
809
|
public abstract fun invokeCallback (ILcom/facebook/react/bridge/NativeArrayInterface;)V
|
|
803
810
|
}
|
|
804
811
|
|
|
805
|
-
public class com/facebook/react/bridge/JSONArguments {
|
|
806
|
-
public
|
|
807
|
-
public static fun fromJSONArray (Lorg/json/JSONArray;)Lcom/facebook/react/bridge/ReadableArray;
|
|
808
|
-
public static fun fromJSONArrayString (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
809
|
-
public static fun fromJSONObject (Lorg/json/JSONObject;)Lcom/facebook/react/bridge/ReadableMap;
|
|
810
|
-
public static fun fromJSONObjectString (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableMap;
|
|
812
|
+
public final class com/facebook/react/bridge/JSONArguments {
|
|
813
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/JSONArguments;
|
|
814
|
+
public static final fun fromJSONArray (Lorg/json/JSONArray;)Lcom/facebook/react/bridge/ReadableArray;
|
|
815
|
+
public static final fun fromJSONArrayString (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
816
|
+
public static final fun fromJSONObject (Lorg/json/JSONObject;)Lcom/facebook/react/bridge/ReadableMap;
|
|
817
|
+
public static final fun fromJSONObjectString (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableMap;
|
|
811
818
|
}
|
|
812
819
|
|
|
813
820
|
public final class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge/ReadableArray, com/facebook/react/bridge/WritableArray {
|
|
@@ -892,10 +899,10 @@ public final class com/facebook/react/bridge/JavaOnlyMap$Companion {
|
|
|
892
899
|
public final fun of ([Ljava/lang/Object;)Lcom/facebook/react/bridge/JavaOnlyMap;
|
|
893
900
|
}
|
|
894
901
|
|
|
895
|
-
public class com/facebook/react/bridge/JavaScriptContextHolder {
|
|
902
|
+
public final class com/facebook/react/bridge/JavaScriptContextHolder {
|
|
896
903
|
public fun <init> (J)V
|
|
897
|
-
public fun clear ()V
|
|
898
|
-
public fun get ()J
|
|
904
|
+
public final fun clear ()V
|
|
905
|
+
public final fun get ()J
|
|
899
906
|
}
|
|
900
907
|
|
|
901
908
|
public abstract class com/facebook/react/bridge/JavaScriptExecutor {
|
|
@@ -919,10 +926,10 @@ public final class com/facebook/react/bridge/JavaScriptModuleRegistry {
|
|
|
919
926
|
public fun getJavaScriptModule (Lcom/facebook/react/bridge/CatalystInstance;Ljava/lang/Class;)Lcom/facebook/react/bridge/JavaScriptModule;
|
|
920
927
|
}
|
|
921
928
|
|
|
922
|
-
public class com/facebook/react/bridge/JsonWriterHelper {
|
|
923
|
-
public
|
|
924
|
-
public static fun readableArrayValue (Landroid/util/JsonWriter;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
925
|
-
public static fun value (Landroid/util/JsonWriter;Ljava/lang/Object;)V
|
|
929
|
+
public final class com/facebook/react/bridge/JsonWriterHelper {
|
|
930
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/JsonWriterHelper;
|
|
931
|
+
public static final fun readableArrayValue (Landroid/util/JsonWriter;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
932
|
+
public static final fun value (Landroid/util/JsonWriter;Ljava/lang/Object;)V
|
|
926
933
|
}
|
|
927
934
|
|
|
928
935
|
public abstract interface class com/facebook/react/bridge/LifecycleEventListener {
|
|
@@ -931,15 +938,6 @@ public abstract interface class com/facebook/react/bridge/LifecycleEventListener
|
|
|
931
938
|
public abstract fun onHostResume ()V
|
|
932
939
|
}
|
|
933
940
|
|
|
934
|
-
public final class com/facebook/react/bridge/MemoryPressure : java/lang/Enum {
|
|
935
|
-
public static final field CRITICAL Lcom/facebook/react/bridge/MemoryPressure;
|
|
936
|
-
public static final field MODERATE Lcom/facebook/react/bridge/MemoryPressure;
|
|
937
|
-
public static final field UI_HIDDEN Lcom/facebook/react/bridge/MemoryPressure;
|
|
938
|
-
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
939
|
-
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/bridge/MemoryPressure;
|
|
940
|
-
public static fun values ()[Lcom/facebook/react/bridge/MemoryPressure;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
941
|
public abstract interface class com/facebook/react/bridge/MemoryPressureListener {
|
|
944
942
|
public abstract fun handleMemoryPressure (I)V
|
|
945
943
|
}
|
|
@@ -1128,21 +1126,9 @@ public abstract class com/facebook/react/bridge/ReactContextBaseJavaModule : com
|
|
|
1128
1126
|
protected final fun getCurrentActivity ()Landroid/app/Activity;
|
|
1129
1127
|
}
|
|
1130
1128
|
|
|
1131
|
-
public class com/facebook/react/bridge/ReactCxxErrorHandler {
|
|
1132
|
-
public
|
|
1133
|
-
public static fun setHandleErrorFunc (Ljava/lang/Object;Ljava/lang/reflect/Method;)V
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
public final class com/facebook/react/bridge/ReactIgnorableMountingException : java/lang/RuntimeException {
|
|
1137
|
-
public static final field Companion Lcom/facebook/react/bridge/ReactIgnorableMountingException$Companion;
|
|
1138
|
-
public fun <init> (Ljava/lang/String;)V
|
|
1139
|
-
public fun <init> (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
1140
|
-
public fun <init> (Ljava/lang/Throwable;)V
|
|
1141
|
-
public static final fun isIgnorable (Ljava/lang/Throwable;)Z
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
public final class com/facebook/react/bridge/ReactIgnorableMountingException$Companion {
|
|
1145
|
-
public final fun isIgnorable (Ljava/lang/Throwable;)Z
|
|
1129
|
+
public final class com/facebook/react/bridge/ReactCxxErrorHandler {
|
|
1130
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/ReactCxxErrorHandler;
|
|
1131
|
+
public static final fun setHandleErrorFunc (Ljava/lang/Object;Ljava/lang/reflect/Method;)V
|
|
1146
1132
|
}
|
|
1147
1133
|
|
|
1148
1134
|
public class com/facebook/react/bridge/ReactInstanceManagerInspectorTarget : java/lang/AutoCloseable {
|
|
@@ -1340,6 +1326,7 @@ public final class com/facebook/react/bridge/ReactSoftExceptionLogger {
|
|
|
1340
1326
|
}
|
|
1341
1327
|
|
|
1342
1328
|
public final class com/facebook/react/bridge/ReactSoftExceptionLogger$Categories {
|
|
1329
|
+
public static final field CLIPPING_PROHIBITED_VIEW Ljava/lang/String;
|
|
1343
1330
|
public static final field INSTANCE Lcom/facebook/react/bridge/ReactSoftExceptionLogger$Categories;
|
|
1344
1331
|
public static final field RVG_IS_VIEW_CLIPPED Ljava/lang/String;
|
|
1345
1332
|
public static final field RVG_ON_VIEW_REMOVED Ljava/lang/String;
|
|
@@ -1366,6 +1353,22 @@ public abstract interface class com/facebook/react/bridge/ReadableArray {
|
|
|
1366
1353
|
public abstract fun toArrayList ()Ljava/util/ArrayList;
|
|
1367
1354
|
}
|
|
1368
1355
|
|
|
1356
|
+
public final class com/facebook/react/bridge/ReadableArrayBuilder {
|
|
1357
|
+
public fun <init> (Lcom/facebook/react/bridge/WritableArray;)V
|
|
1358
|
+
public final fun add (D)V
|
|
1359
|
+
public final fun add (I)V
|
|
1360
|
+
public final fun add (J)V
|
|
1361
|
+
public final fun add (Ljava/lang/String;)V
|
|
1362
|
+
public final fun add (Z)V
|
|
1363
|
+
public final fun addArray (Lkotlin/jvm/functions/Function1;)V
|
|
1364
|
+
public final fun addMap (Lkotlin/jvm/functions/Function1;)V
|
|
1365
|
+
public final fun addNull ()V
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
public final class com/facebook/react/bridge/ReadableArrayBuilderKt {
|
|
1369
|
+
public static final fun buildReadableArray (Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/bridge/ReadableArray;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1369
1372
|
public abstract interface class com/facebook/react/bridge/ReadableMap {
|
|
1370
1373
|
public abstract fun getArray (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
1371
1374
|
public abstract fun getBoolean (Ljava/lang/String;)Z
|
|
@@ -1383,6 +1386,22 @@ public abstract interface class com/facebook/react/bridge/ReadableMap {
|
|
|
1383
1386
|
public abstract fun toHashMap ()Ljava/util/HashMap;
|
|
1384
1387
|
}
|
|
1385
1388
|
|
|
1389
|
+
public final class com/facebook/react/bridge/ReadableMapBuilder {
|
|
1390
|
+
public fun <init> (Lcom/facebook/react/bridge/WritableMap;)V
|
|
1391
|
+
public final fun put (Ljava/lang/String;D)V
|
|
1392
|
+
public final fun put (Ljava/lang/String;I)V
|
|
1393
|
+
public final fun put (Ljava/lang/String;J)V
|
|
1394
|
+
public final fun put (Ljava/lang/String;Ljava/lang/String;)V
|
|
1395
|
+
public final fun put (Ljava/lang/String;Z)V
|
|
1396
|
+
public final fun putArray (Ljava/lang/String;Lkotlin/jvm/functions/Function1;)V
|
|
1397
|
+
public final fun putMap (Ljava/lang/String;Lkotlin/jvm/functions/Function1;)V
|
|
1398
|
+
public final fun putNull (Ljava/lang/String;)V
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
public final class com/facebook/react/bridge/ReadableMapBuilderKt {
|
|
1402
|
+
public static final fun buildReadableMap (Lkotlin/jvm/functions/Function1;)Lcom/facebook/react/bridge/ReadableMap;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1386
1405
|
public abstract interface class com/facebook/react/bridge/ReadableMapKeySetIterator {
|
|
1387
1406
|
public abstract fun hasNextKey ()Z
|
|
1388
1407
|
public abstract fun nextKey ()Ljava/lang/String;
|
|
@@ -1462,10 +1481,6 @@ public final class com/facebook/react/bridge/SoftAssertions {
|
|
|
1462
1481
|
public static final fun assertUnreachable (Ljava/lang/String;)V
|
|
1463
1482
|
}
|
|
1464
1483
|
|
|
1465
|
-
public abstract interface class com/facebook/react/bridge/Systrace : com/facebook/react/bridge/JavaScriptModule {
|
|
1466
|
-
public abstract fun setEnabled (Z)V
|
|
1467
|
-
}
|
|
1468
|
-
|
|
1469
1484
|
public abstract interface class com/facebook/react/bridge/UIManager : com/facebook/react/bridge/PerformanceCounter {
|
|
1470
1485
|
public abstract fun addRootView (Landroid/view/View;Lcom/facebook/react/bridge/WritableMap;)I
|
|
1471
1486
|
public abstract fun addUIManagerEventListener (Lcom/facebook/react/bridge/UIManagerListener;)V
|
|
@@ -1492,15 +1507,15 @@ public abstract interface class com/facebook/react/bridge/UIManagerProvider {
|
|
|
1492
1507
|
public abstract fun createUIManager (Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/UIManager;
|
|
1493
1508
|
}
|
|
1494
1509
|
|
|
1495
|
-
public class com/facebook/react/bridge/UiThreadUtil {
|
|
1496
|
-
public
|
|
1497
|
-
public static fun assertNotOnUiThread ()V
|
|
1498
|
-
public static fun assertOnUiThread ()V
|
|
1499
|
-
public static fun getUiThreadHandler ()Landroid/os/Handler;
|
|
1500
|
-
public static fun isOnUiThread ()Z
|
|
1501
|
-
public static fun removeOnUiThread (Ljava/lang/Runnable;)V
|
|
1502
|
-
public static fun runOnUiThread (Ljava/lang/Runnable;)Z
|
|
1503
|
-
public static fun runOnUiThread (Ljava/lang/Runnable;J)Z
|
|
1510
|
+
public final class com/facebook/react/bridge/UiThreadUtil {
|
|
1511
|
+
public static final field INSTANCE Lcom/facebook/react/bridge/UiThreadUtil;
|
|
1512
|
+
public static final fun assertNotOnUiThread ()V
|
|
1513
|
+
public static final fun assertOnUiThread ()V
|
|
1514
|
+
public static final fun getUiThreadHandler ()Landroid/os/Handler;
|
|
1515
|
+
public static final fun isOnUiThread ()Z
|
|
1516
|
+
public static final fun removeOnUiThread (Ljava/lang/Runnable;)V
|
|
1517
|
+
public static final fun runOnUiThread (Ljava/lang/Runnable;)Z
|
|
1518
|
+
public static final fun runOnUiThread (Ljava/lang/Runnable;J)Z
|
|
1504
1519
|
}
|
|
1505
1520
|
|
|
1506
1521
|
public final class com/facebook/react/bridge/UnexpectedNativeTypeException : java/lang/RuntimeException {
|
|
@@ -1573,11 +1588,6 @@ public abstract interface class com/facebook/react/bridge/queue/MessageQueueThre
|
|
|
1573
1588
|
public abstract fun runOnQueue (Ljava/lang/Runnable;)Z
|
|
1574
1589
|
}
|
|
1575
1590
|
|
|
1576
|
-
public final class com/facebook/react/bridge/queue/MessageQueueThreadHandler : android/os/Handler {
|
|
1577
|
-
public fun <init> (Landroid/os/Looper;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)V
|
|
1578
|
-
public fun dispatchMessage (Landroid/os/Message;)V
|
|
1579
|
-
}
|
|
1580
|
-
|
|
1581
1591
|
public final class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebook/react/bridge/queue/MessageQueueThread {
|
|
1582
1592
|
public static final field Companion Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl$Companion;
|
|
1583
1593
|
public synthetic fun <init> (Ljava/lang/String;Landroid/os/Looper;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;Lcom/facebook/react/bridge/queue/MessageQueueThreadPerfStats;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
@@ -1678,19 +1688,6 @@ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$C
|
|
|
1678
1688
|
public final fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
|
|
1679
1689
|
}
|
|
1680
1690
|
|
|
1681
|
-
public final class com/facebook/react/common/ClassFinder {
|
|
1682
|
-
public static final field INSTANCE Lcom/facebook/react/common/ClassFinder;
|
|
1683
|
-
public static final fun canLoadClassesFromAnnotationProcessors ()Z
|
|
1684
|
-
public static final fun findClass (Ljava/lang/String;)Ljava/lang/Class;
|
|
1685
|
-
}
|
|
1686
|
-
|
|
1687
|
-
public final class com/facebook/react/common/ClearableSynchronizedPool : androidx/core/util/Pools$Pool {
|
|
1688
|
-
public fun <init> (I)V
|
|
1689
|
-
public fun acquire ()Ljava/lang/Object;
|
|
1690
|
-
public final fun clear ()V
|
|
1691
|
-
public fun release (Ljava/lang/Object;)Z
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
1691
|
public final class com/facebook/react/common/DebugServerException : java/lang/RuntimeException {
|
|
1695
1692
|
public static final field Companion Lcom/facebook/react/common/DebugServerException$Companion;
|
|
1696
1693
|
public fun <init> (Ljava/lang/String;)V
|
|
@@ -1771,19 +1768,6 @@ public abstract interface class com/facebook/react/common/ShakeDetector$ShakeLis
|
|
|
1771
1768
|
public abstract fun onShake ()V
|
|
1772
1769
|
}
|
|
1773
1770
|
|
|
1774
|
-
public final class com/facebook/react/common/SingleThreadAsserter {
|
|
1775
|
-
public fun <init> ()V
|
|
1776
|
-
public final fun assertNow ()V
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
public final class com/facebook/react/common/StandardCharsets {
|
|
1780
|
-
public static final field INSTANCE Lcom/facebook/react/common/StandardCharsets;
|
|
1781
|
-
public static final field UTF_16 Ljava/nio/charset/Charset;
|
|
1782
|
-
public static final field UTF_16BE Ljava/nio/charset/Charset;
|
|
1783
|
-
public static final field UTF_16LE Ljava/nio/charset/Charset;
|
|
1784
|
-
public static final field UTF_8 Ljava/nio/charset/Charset;
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
1771
|
public abstract interface class com/facebook/react/common/SurfaceDelegate {
|
|
1788
1772
|
public abstract fun createContentView (Ljava/lang/String;)V
|
|
1789
1773
|
public abstract fun destroyContentView ()V
|
|
@@ -1912,29 +1896,6 @@ public final class com/facebook/react/common/mapbuffer/ReadableMapBuffer : com/f
|
|
|
1912
1896
|
public final class com/facebook/react/common/mapbuffer/ReadableMapBuffer$Companion {
|
|
1913
1897
|
}
|
|
1914
1898
|
|
|
1915
|
-
public final class com/facebook/react/common/mapbuffer/WritableMapBuffer : com/facebook/react/common/mapbuffer/MapBuffer {
|
|
1916
|
-
public fun <init> ()V
|
|
1917
|
-
public fun contains (I)Z
|
|
1918
|
-
public fun entryAt (I)Lcom/facebook/react/common/mapbuffer/MapBuffer$Entry;
|
|
1919
|
-
public fun getBoolean (I)Z
|
|
1920
|
-
public fun getCount ()I
|
|
1921
|
-
public fun getDouble (I)D
|
|
1922
|
-
public fun getInt (I)I
|
|
1923
|
-
public fun getKeyOffset (I)I
|
|
1924
|
-
public fun getLong (I)J
|
|
1925
|
-
public fun getMapBuffer (I)Lcom/facebook/react/common/mapbuffer/MapBuffer;
|
|
1926
|
-
public fun getMapBufferList (I)Ljava/util/List;
|
|
1927
|
-
public fun getString (I)Ljava/lang/String;
|
|
1928
|
-
public fun getType (I)Lcom/facebook/react/common/mapbuffer/MapBuffer$DataType;
|
|
1929
|
-
public fun iterator ()Ljava/util/Iterator;
|
|
1930
|
-
public final fun put (ID)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1931
|
-
public final fun put (II)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1932
|
-
public final fun put (IJ)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1933
|
-
public final fun put (ILcom/facebook/react/common/mapbuffer/MapBuffer;)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1934
|
-
public final fun put (ILjava/lang/String;)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1935
|
-
public final fun put (IZ)Lcom/facebook/react/common/mapbuffer/WritableMapBuffer;
|
|
1936
|
-
}
|
|
1937
|
-
|
|
1938
1899
|
public final class com/facebook/react/config/ReactFeatureFlags {
|
|
1939
1900
|
public static final field INSTANCE Lcom/facebook/react/config/ReactFeatureFlags;
|
|
1940
1901
|
public static field dispatchPointerEvents Z
|
|
@@ -2007,21 +1968,30 @@ public final class com/facebook/react/defaults/DefaultTurboModuleManagerDelegate
|
|
|
2007
1968
|
public final class com/facebook/react/devsupport/BridgeDevSupportManager : com/facebook/react/devsupport/DevSupportManagerBase {
|
|
2008
1969
|
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
|
|
2009
1970
|
public fun handleReloadJS ()V
|
|
2010
|
-
public fun loadSplitBundleFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevSplitBundleCallback;)V
|
|
2011
1971
|
}
|
|
2012
1972
|
|
|
2013
|
-
public class com/facebook/react/devsupport/BundleDownloader {
|
|
1973
|
+
public final class com/facebook/react/devsupport/BundleDownloader {
|
|
1974
|
+
public static final field Companion Lcom/facebook/react/devsupport/BundleDownloader$Companion;
|
|
2014
1975
|
public fun <init> (Lokhttp3/OkHttpClient;)V
|
|
2015
|
-
public fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;)V
|
|
2016
|
-
public fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;Lokhttp3/Request$Builder;)V
|
|
1976
|
+
public final fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;)V
|
|
1977
|
+
public final fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;Lokhttp3/Request$Builder;)V
|
|
1978
|
+
public static synthetic fun downloadBundleFromURL$default (Lcom/facebook/react/devsupport/BundleDownloader;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;Lokhttp3/Request$Builder;ILjava/lang/Object;)V
|
|
2017
1979
|
}
|
|
2018
1980
|
|
|
2019
|
-
public class com/facebook/react/devsupport/BundleDownloader$BundleInfo {
|
|
1981
|
+
public final class com/facebook/react/devsupport/BundleDownloader$BundleInfo {
|
|
1982
|
+
public static final field Companion Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo$Companion;
|
|
2020
1983
|
public fun <init> ()V
|
|
2021
|
-
public static fun fromJSONString (Ljava/lang/String;)Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;
|
|
2022
|
-
public fun getFilesChangedCount ()I
|
|
2023
|
-
public fun getUrl ()Ljava/lang/String;
|
|
2024
|
-
public fun toJSONString ()Ljava/lang/String;
|
|
1984
|
+
public static final fun fromJSONString (Ljava/lang/String;)Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;
|
|
1985
|
+
public final fun getFilesChangedCount ()I
|
|
1986
|
+
public final fun getUrl ()Ljava/lang/String;
|
|
1987
|
+
public final fun toJSONString ()Ljava/lang/String;
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
public final class com/facebook/react/devsupport/BundleDownloader$BundleInfo$Companion {
|
|
1991
|
+
public final fun fromJSONString (Ljava/lang/String;)Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
public final class com/facebook/react/devsupport/BundleDownloader$Companion {
|
|
2025
1995
|
}
|
|
2026
1996
|
|
|
2027
1997
|
public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementation : com/facebook/react/devsupport/interfaces/DevLoadingViewManager {
|
|
@@ -2038,26 +2008,26 @@ public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementa
|
|
|
2038
2008
|
|
|
2039
2009
|
public class com/facebook/react/devsupport/DevServerHelper {
|
|
2040
2010
|
public fun <init> (Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;Landroid/content/Context;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;)V
|
|
2041
|
-
public fun closeInspectorConnection ()V
|
|
2042
|
-
public fun closePackagerConnection ()V
|
|
2043
|
-
public fun disableDebugger ()V
|
|
2044
|
-
public fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;)V
|
|
2045
|
-
public fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;Lokhttp3/Request$Builder;)V
|
|
2046
|
-
public fun
|
|
2011
|
+
public final fun closeInspectorConnection ()V
|
|
2012
|
+
public final fun closePackagerConnection ()V
|
|
2013
|
+
public final fun disableDebugger ()V
|
|
2014
|
+
public final fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;)V
|
|
2015
|
+
public final fun downloadBundleFromURL (Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;Lokhttp3/Request$Builder;)V
|
|
2016
|
+
public static synthetic fun downloadBundleFromURL$default (Lcom/facebook/react/devsupport/DevServerHelper;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;Ljava/io/File;Ljava/lang/String;Lcom/facebook/react/devsupport/BundleDownloader$BundleInfo;Lokhttp3/Request$Builder;ILjava/lang/Object;)V
|
|
2017
|
+
public final fun downloadBundleResourceFromUrlSync (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
|
|
2047
2018
|
public fun getDevServerBundleURL (Ljava/lang/String;)Ljava/lang/String;
|
|
2048
2019
|
public fun getDevServerSplitBundleURL (Ljava/lang/String;)Ljava/lang/String;
|
|
2049
2020
|
public fun getSourceMapUrl (Ljava/lang/String;)Ljava/lang/String;
|
|
2050
2021
|
public fun getSourceUrl (Ljava/lang/String;)Ljava/lang/String;
|
|
2051
|
-
public fun getWebsocketProxyURL ()Ljava/lang/String;
|
|
2022
|
+
public final fun getWebsocketProxyURL ()Ljava/lang/String;
|
|
2052
2023
|
public fun isPackagerRunning (Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
|
|
2053
|
-
public fun openDebugger (Lcom/facebook/react/bridge/ReactContext;Ljava/lang/String;)V
|
|
2054
|
-
public fun openInspectorConnection ()V
|
|
2055
|
-
public fun openPackagerConnection (Ljava/lang/String;Lcom/facebook/react/devsupport/DevServerHelper$PackagerCommandListener;)V
|
|
2024
|
+
public final fun openDebugger (Lcom/facebook/react/bridge/ReactContext;Ljava/lang/String;)V
|
|
2025
|
+
public final fun openInspectorConnection ()V
|
|
2026
|
+
public final fun openPackagerConnection (Ljava/lang/String;Lcom/facebook/react/devsupport/DevServerHelper$PackagerCommandListener;)V
|
|
2056
2027
|
}
|
|
2057
2028
|
|
|
2058
2029
|
public abstract interface class com/facebook/react/devsupport/DevServerHelper$PackagerCommandListener {
|
|
2059
2030
|
public abstract fun customCommandHandlers ()Ljava/util/Map;
|
|
2060
|
-
public fun onCaptureHeapCommand (Lcom/facebook/react/packagerconnection/Responder;)V
|
|
2061
2031
|
public abstract fun onPackagerConnected ()V
|
|
2062
2032
|
public abstract fun onPackagerDevMenuCommand ()V
|
|
2063
2033
|
public abstract fun onPackagerDisconnected ()V
|
|
@@ -2065,35 +2035,35 @@ public abstract interface class com/facebook/react/devsupport/DevServerHelper$Pa
|
|
|
2065
2035
|
}
|
|
2066
2036
|
|
|
2067
2037
|
public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/facebook/react/devsupport/interfaces/DevSupportManager {
|
|
2068
|
-
|
|
2038
|
+
public static final field Companion Lcom/facebook/react/devsupport/DevSupportManagerBase$Companion;
|
|
2069
2039
|
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
|
|
2070
2040
|
public fun addCustomDevOption (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevOptionHandler;)V
|
|
2071
2041
|
public fun createRootView (Ljava/lang/String;)Landroid/view/View;
|
|
2072
2042
|
public fun createSurfaceDelegate (Ljava/lang/String;)Lcom/facebook/react/common/SurfaceDelegate;
|
|
2073
2043
|
public fun destroyRootView (Landroid/view/View;)V
|
|
2074
2044
|
public fun downloadBundleResourceFromUrlSync (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
|
|
2075
|
-
public fun fetchSplitBundleAndCreateBundleLoader (Ljava/lang/String;Lcom/facebook/react/devsupport/DevSupportManagerBase$CallbackWithBundleLoader;)V
|
|
2076
|
-
protected fun getApplicationContext ()Landroid/content/Context;
|
|
2045
|
+
public final fun fetchSplitBundleAndCreateBundleLoader (Ljava/lang/String;Lcom/facebook/react/devsupport/DevSupportManagerBase$CallbackWithBundleLoader;)V
|
|
2046
|
+
protected final fun getApplicationContext ()Landroid/content/Context;
|
|
2077
2047
|
public fun getCurrentActivity ()Landroid/app/Activity;
|
|
2078
|
-
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
2079
|
-
public fun getDevLoadingViewManager ()Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;
|
|
2080
|
-
public fun getDevServerHelper ()Lcom/facebook/react/devsupport/DevServerHelper;
|
|
2081
|
-
public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2082
|
-
public fun getDevSupportEnabled ()Z
|
|
2048
|
+
public final fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
2049
|
+
public final fun getDevLoadingViewManager ()Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;
|
|
2050
|
+
public final fun getDevServerHelper ()Lcom/facebook/react/devsupport/DevServerHelper;
|
|
2051
|
+
public final fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2052
|
+
public final fun getDevSupportEnabled ()Z
|
|
2083
2053
|
public fun getDownloadedJSBundleFile ()Ljava/lang/String;
|
|
2084
|
-
public fun getJSAppBundleName ()Ljava/lang/String;
|
|
2085
|
-
public fun getLastErrorCookie ()I
|
|
2086
|
-
public fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2087
|
-
public fun getLastErrorTitle ()Ljava/lang/String;
|
|
2088
|
-
public fun getLastErrorType ()Lcom/facebook/react/devsupport/interfaces/ErrorType;
|
|
2089
|
-
public fun getReactInstanceDevHelper ()Lcom/facebook/react/devsupport/ReactInstanceDevHelper;
|
|
2054
|
+
public final fun getJSAppBundleName ()Ljava/lang/String;
|
|
2055
|
+
public final fun getLastErrorCookie ()I
|
|
2056
|
+
public final fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2057
|
+
public final fun getLastErrorTitle ()Ljava/lang/String;
|
|
2058
|
+
public final fun getLastErrorType ()Lcom/facebook/react/devsupport/interfaces/ErrorType;
|
|
2059
|
+
public final fun getReactInstanceDevHelper ()Lcom/facebook/react/devsupport/ReactInstanceDevHelper;
|
|
2090
2060
|
public fun getRedBoxHandler ()Lcom/facebook/react/devsupport/interfaces/RedBoxHandler;
|
|
2091
2061
|
public fun getSourceMapUrl ()Ljava/lang/String;
|
|
2092
2062
|
public fun getSourceUrl ()Ljava/lang/String;
|
|
2093
2063
|
protected abstract fun getUniqueTag ()Ljava/lang/String;
|
|
2094
2064
|
public fun handleException (Ljava/lang/Exception;)V
|
|
2095
2065
|
public fun hasUpToDateJSBundleInCache ()Z
|
|
2096
|
-
protected fun hideDevLoadingView ()V
|
|
2066
|
+
protected final fun hideDevLoadingView ()V
|
|
2097
2067
|
public fun hidePausedInDebuggerOverlay ()V
|
|
2098
2068
|
public fun hideRedboxDialog ()V
|
|
2099
2069
|
public fun isPackagerRunning (Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
|
|
@@ -2105,11 +2075,16 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
|
|
|
2105
2075
|
public fun reloadJSFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/BundleLoadCallback;)V
|
|
2106
2076
|
public fun reloadSettings ()V
|
|
2107
2077
|
public fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
2108
|
-
public fun
|
|
2078
|
+
public final fun setDevLoadingViewManager (Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;)V
|
|
2079
|
+
public final fun setDevSupportEnabled (Z)V
|
|
2109
2080
|
public fun setFpsDebugEnabled (Z)V
|
|
2110
2081
|
public fun setHotModuleReplacementEnabled (Z)V
|
|
2082
|
+
public final fun setLastErrorCookie (I)V
|
|
2083
|
+
public final fun setLastErrorStack ([Lcom/facebook/react/devsupport/interfaces/StackFrame;)V
|
|
2084
|
+
public final fun setLastErrorTitle (Ljava/lang/String;)V
|
|
2085
|
+
public final fun setLastErrorType (Lcom/facebook/react/devsupport/interfaces/ErrorType;)V
|
|
2111
2086
|
public fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
|
|
2112
|
-
protected fun showDevLoadingViewForRemoteJSEnabled ()V
|
|
2087
|
+
protected final fun showDevLoadingViewForRemoteJSEnabled ()V
|
|
2113
2088
|
public fun showDevOptionsDialog ()V
|
|
2114
2089
|
public fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
2115
2090
|
public fun showNewJavaError (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
@@ -2124,6 +2099,9 @@ public abstract interface class com/facebook/react/devsupport/DevSupportManagerB
|
|
|
2124
2099
|
public abstract fun onSuccess (Lcom/facebook/react/bridge/JSBundleLoader;)V
|
|
2125
2100
|
}
|
|
2126
2101
|
|
|
2102
|
+
public final class com/facebook/react/devsupport/DevSupportManagerBase$Companion {
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2127
2105
|
public abstract interface class com/facebook/react/devsupport/DevSupportManagerFactory {
|
|
2128
2106
|
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;
|
|
2129
2107
|
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;
|
|
@@ -2141,18 +2119,6 @@ public abstract interface class com/facebook/react/devsupport/HMRClient : com/fa
|
|
|
2141
2119
|
public abstract fun setup (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IZLjava/lang/String;)V
|
|
2142
2120
|
}
|
|
2143
2121
|
|
|
2144
|
-
public final class com/facebook/react/devsupport/LogBoxModule : com/facebook/fbreact/specs/NativeLogBoxSpec {
|
|
2145
|
-
public static final field Companion Lcom/facebook/react/devsupport/LogBoxModule$Companion;
|
|
2146
|
-
public static final field NAME Ljava/lang/String;
|
|
2147
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
2148
|
-
public fun hide ()V
|
|
2149
|
-
public fun invalidate ()V
|
|
2150
|
-
public fun show ()V
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
public final class com/facebook/react/devsupport/LogBoxModule$Companion {
|
|
2154
|
-
}
|
|
2155
|
-
|
|
2156
2122
|
public abstract interface class com/facebook/react/devsupport/ReactInstanceDevHelper {
|
|
2157
2123
|
public abstract fun createRootView (Ljava/lang/String;)Landroid/view/View;
|
|
2158
2124
|
public abstract fun destroyRootView (Landroid/view/View;)V
|
|
@@ -2190,7 +2156,6 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2190
2156
|
public fun hidePausedInDebuggerOverlay ()V
|
|
2191
2157
|
public fun hideRedboxDialog ()V
|
|
2192
2158
|
public fun isPackagerRunning (Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
|
|
2193
|
-
public fun loadSplitBundleFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevSplitBundleCallback;)V
|
|
2194
2159
|
public fun onNewReactContextCreated (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2195
2160
|
public fun onReactInstanceDestroyed (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2196
2161
|
public fun openDebugger ()V
|
|
@@ -2212,12 +2177,14 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2212
2177
|
public fun toggleElementInspector ()V
|
|
2213
2178
|
}
|
|
2214
2179
|
|
|
2215
|
-
public class com/facebook/react/devsupport/StackTraceHelper {
|
|
2180
|
+
public final class com/facebook/react/devsupport/StackTraceHelper {
|
|
2181
|
+
public static final field COLLAPSE_KEY Ljava/lang/String;
|
|
2216
2182
|
public static final field COLUMN_KEY Ljava/lang/String;
|
|
2217
2183
|
public static final field COMPONENT_STACK_KEY Ljava/lang/String;
|
|
2218
2184
|
public static final field EXTRA_DATA_KEY Ljava/lang/String;
|
|
2219
2185
|
public static final field FILE_KEY Ljava/lang/String;
|
|
2220
2186
|
public static final field ID_KEY Ljava/lang/String;
|
|
2187
|
+
public static final field INSTANCE Lcom/facebook/react/devsupport/StackTraceHelper;
|
|
2221
2188
|
public static final field IS_FATAL_KEY Ljava/lang/String;
|
|
2222
2189
|
public static final field LINE_NUMBER_KEY Ljava/lang/String;
|
|
2223
2190
|
public static final field MESSAGE_KEY Ljava/lang/String;
|
|
@@ -2225,17 +2192,17 @@ public class com/facebook/react/devsupport/StackTraceHelper {
|
|
|
2225
2192
|
public static final field NAME_KEY Ljava/lang/String;
|
|
2226
2193
|
public static final field ORIGINAL_MESSAGE_KEY Ljava/lang/String;
|
|
2227
2194
|
public static final field STACK_KEY Ljava/lang/String;
|
|
2228
|
-
public fun
|
|
2229
|
-
public static fun
|
|
2230
|
-
public
|
|
2231
|
-
public
|
|
2232
|
-
public
|
|
2233
|
-
public static fun
|
|
2234
|
-
public static fun formatFrameSource (Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2235
|
-
public static fun formatStackTrace (Ljava/lang/String;[Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2195
|
+
public static final fun convertJavaStackTrace (Ljava/lang/Throwable;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2196
|
+
public static final fun convertJsStackTrace (Lcom/facebook/react/bridge/ReadableArray;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2197
|
+
public final fun convertJsStackTrace (Ljava/lang/String;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2198
|
+
public final fun convertJsStackTrace (Lorg/json/JSONArray;)[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2199
|
+
public final fun formatFrameSource (Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2200
|
+
public static final fun formatStackTrace (Ljava/lang/String;[Lcom/facebook/react/devsupport/interfaces/StackFrame;)Ljava/lang/String;
|
|
2236
2201
|
}
|
|
2237
2202
|
|
|
2238
|
-
public class com/facebook/react/devsupport/StackTraceHelper$StackFrameImpl : com/facebook/react/devsupport/interfaces/StackFrame {
|
|
2203
|
+
public final class com/facebook/react/devsupport/StackTraceHelper$StackFrameImpl : com/facebook/react/devsupport/interfaces/StackFrame {
|
|
2204
|
+
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IIZ)V
|
|
2205
|
+
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IIZILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
2239
2206
|
public fun getColumn ()I
|
|
2240
2207
|
public fun getFile ()Ljava/lang/String;
|
|
2241
2208
|
public fun getFileName ()Ljava/lang/String;
|
|
@@ -2266,11 +2233,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevOpti
|
|
|
2266
2233
|
public abstract fun onOptionSelected ()V
|
|
2267
2234
|
}
|
|
2268
2235
|
|
|
2269
|
-
public abstract interface class com/facebook/react/devsupport/interfaces/DevSplitBundleCallback {
|
|
2270
|
-
public abstract fun onError (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
2271
|
-
public abstract fun onSuccess ()V
|
|
2272
|
-
}
|
|
2273
|
-
|
|
2274
2236
|
public abstract interface class com/facebook/react/devsupport/interfaces/DevSupportManager : com/facebook/react/bridge/JSExceptionHandler {
|
|
2275
2237
|
public abstract fun addCustomDevOption (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevOptionHandler;)V
|
|
2276
2238
|
public abstract fun createRootView (Ljava/lang/String;)Landroid/view/View;
|
|
@@ -2294,7 +2256,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
|
|
|
2294
2256
|
public abstract fun hidePausedInDebuggerOverlay ()V
|
|
2295
2257
|
public abstract fun hideRedboxDialog ()V
|
|
2296
2258
|
public abstract fun isPackagerRunning (Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
|
|
2297
|
-
public abstract fun loadSplitBundleFromServer (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevSplitBundleCallback;)V
|
|
2298
2259
|
public abstract fun onNewReactContextCreated (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2299
2260
|
public abstract fun onReactInstanceDestroyed (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2300
2261
|
public abstract fun openDebugger ()V
|
|
@@ -2372,47 +2333,42 @@ public final class com/facebook/react/fabric/ComponentFactory {
|
|
|
2372
2333
|
public fun <init> ()V
|
|
2373
2334
|
}
|
|
2374
2335
|
|
|
2375
|
-
public class com/facebook/react/fabric/DevToolsReactPerfLogger : com/facebook/react/bridge/ReactMarker$FabricMarkerListener {
|
|
2336
|
+
public final class com/facebook/react/fabric/DevToolsReactPerfLogger : com/facebook/react/bridge/ReactMarker$FabricMarkerListener {
|
|
2376
2337
|
public fun <init> ()V
|
|
2377
|
-
public fun addDevToolsReactPerfLoggerListener (Lcom/facebook/react/fabric/DevToolsReactPerfLogger$DevToolsReactPerfLoggerListener;)V
|
|
2338
|
+
public final fun addDevToolsReactPerfLoggerListener (Lcom/facebook/react/fabric/DevToolsReactPerfLogger$DevToolsReactPerfLoggerListener;)V
|
|
2378
2339
|
public fun logFabricMarker (Lcom/facebook/react/bridge/ReactMarkerConstants;Ljava/lang/String;IJ)V
|
|
2379
2340
|
public fun logFabricMarker (Lcom/facebook/react/bridge/ReactMarkerConstants;Ljava/lang/String;IJI)V
|
|
2380
|
-
public fun removeDevToolsReactPerfLoggerListener (Lcom/facebook/react/fabric/DevToolsReactPerfLogger$DevToolsReactPerfLoggerListener;)V
|
|
2341
|
+
public final fun removeDevToolsReactPerfLoggerListener (Lcom/facebook/react/fabric/DevToolsReactPerfLogger$DevToolsReactPerfLoggerListener;)V
|
|
2381
2342
|
}
|
|
2382
2343
|
|
|
2383
2344
|
public abstract interface class com/facebook/react/fabric/DevToolsReactPerfLogger$DevToolsReactPerfLoggerListener {
|
|
2384
2345
|
public abstract fun onFabricCommitEnd (Lcom/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPoint;)V
|
|
2385
2346
|
}
|
|
2386
2347
|
|
|
2387
|
-
public class com/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPoint {
|
|
2388
|
-
public fun getAffectedLayoutNodesCount ()I
|
|
2389
|
-
public fun getAffectedLayoutNodesCountTime ()J
|
|
2390
|
-
public fun getBatchExecutionDuration ()J
|
|
2391
|
-
public fun getBatchExecutionEnd ()J
|
|
2392
|
-
public fun getBatchExecutionStart ()J
|
|
2393
|
-
public fun getCommitDuration ()J
|
|
2394
|
-
public fun getCommitEnd ()J
|
|
2395
|
-
public fun getCommitNumber ()J
|
|
2396
|
-
public fun getCommitStart ()J
|
|
2397
|
-
public fun getDiffDuration ()J
|
|
2398
|
-
public fun getDiffEnd ()J
|
|
2399
|
-
public fun getDiffStart ()J
|
|
2400
|
-
public fun getFinishTransactionEnd ()J
|
|
2401
|
-
public fun getFinishTransactionStart ()J
|
|
2402
|
-
public fun getLayoutDuration ()J
|
|
2403
|
-
public fun getLayoutEnd ()J
|
|
2404
|
-
public fun getLayoutStart ()J
|
|
2405
|
-
public fun getTransactionEndDuration ()J
|
|
2406
|
-
public fun getUpdateUIMainThreadEnd ()J
|
|
2407
|
-
public fun getUpdateUIMainThreadStart ()J
|
|
2348
|
+
public final class com/facebook/react/fabric/DevToolsReactPerfLogger$FabricCommitPoint {
|
|
2349
|
+
public final fun getAffectedLayoutNodesCount ()I
|
|
2350
|
+
public final fun getAffectedLayoutNodesCountTime ()J
|
|
2351
|
+
public final fun getBatchExecutionDuration ()J
|
|
2352
|
+
public final fun getBatchExecutionEnd ()J
|
|
2353
|
+
public final fun getBatchExecutionStart ()J
|
|
2354
|
+
public final fun getCommitDuration ()J
|
|
2355
|
+
public final fun getCommitEnd ()J
|
|
2356
|
+
public final fun getCommitNumber ()J
|
|
2357
|
+
public final fun getCommitStart ()J
|
|
2358
|
+
public final fun getDiffDuration ()J
|
|
2359
|
+
public final fun getDiffEnd ()J
|
|
2360
|
+
public final fun getDiffStart ()J
|
|
2361
|
+
public final fun getFinishTransactionEnd ()J
|
|
2362
|
+
public final fun getFinishTransactionStart ()J
|
|
2363
|
+
public final fun getLayoutDuration ()J
|
|
2364
|
+
public final fun getLayoutEnd ()J
|
|
2365
|
+
public final fun getLayoutStart ()J
|
|
2366
|
+
public final fun getTransactionEndDuration ()J
|
|
2367
|
+
public final fun getUpdateUIMainThreadEnd ()J
|
|
2368
|
+
public final fun getUpdateUIMainThreadStart ()J
|
|
2408
2369
|
public fun toString ()Ljava/lang/String;
|
|
2409
2370
|
}
|
|
2410
2371
|
|
|
2411
|
-
public final class com/facebook/react/fabric/FabricSoLoader {
|
|
2412
|
-
public static final field INSTANCE Lcom/facebook/react/fabric/FabricSoLoader;
|
|
2413
|
-
public static final fun staticInit ()V
|
|
2414
|
-
}
|
|
2415
|
-
|
|
2416
2372
|
public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManager, com/facebook/react/fabric/interop/UIBlockViewResolver, com/facebook/react/uimanager/events/SynchronousEventReceiver {
|
|
2417
2373
|
public static final field IS_DEVELOPMENT_ENVIRONMENT Z
|
|
2418
2374
|
public static final field TAG Ljava/lang/String;
|
|
@@ -2421,25 +2377,29 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2421
2377
|
public fun addRootView (Landroid/view/View;Lcom/facebook/react/bridge/WritableMap;)I
|
|
2422
2378
|
public fun addUIBlock (Lcom/facebook/react/fabric/interop/UIBlock;)V
|
|
2423
2379
|
public fun addUIManagerEventListener (Lcom/facebook/react/bridge/UIManagerListener;)V
|
|
2424
|
-
public fun attachRootView (Lcom/facebook/react/
|
|
2380
|
+
public fun attachRootView (Lcom/facebook/react/fabric/SurfaceHandlerBinding;Landroid/view/View;)V
|
|
2425
2381
|
public fun clearJSResponder ()V
|
|
2426
2382
|
public fun dispatchCommand (IIILcom/facebook/react/bridge/ReadableArray;)V
|
|
2427
2383
|
public fun dispatchCommand (IILcom/facebook/react/bridge/ReadableArray;)V
|
|
2428
2384
|
public fun dispatchCommand (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
2429
2385
|
public fun dispatchCommand (ILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
2386
|
+
public fun findNextFocusableElement (III)Ljava/lang/Integer;
|
|
2430
2387
|
public fun getColor (I[Ljava/lang/String;)I
|
|
2431
2388
|
public fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
2432
2389
|
public fun getPerformanceCounters ()Ljava/util/Map;
|
|
2390
|
+
public fun getRelativeAncestorList (II)[I
|
|
2433
2391
|
public fun getThemeData (I[F)Z
|
|
2434
2392
|
public fun initialize ()V
|
|
2435
2393
|
public fun invalidate ()V
|
|
2436
2394
|
public fun markActiveTouchForTag (II)V
|
|
2395
|
+
public fun measurePreparedLayout (Lcom/facebook/react/views/text/PreparedLayout;FFFF)[F
|
|
2437
2396
|
public fun onAllAnimationsComplete ()V
|
|
2438
2397
|
public fun onAnimationStarted ()V
|
|
2439
2398
|
public fun onHostDestroy ()V
|
|
2440
2399
|
public fun onHostPause ()V
|
|
2441
2400
|
public fun onHostResume ()V
|
|
2442
2401
|
public fun onRequestEventBeat ()V
|
|
2402
|
+
public fun prepareLayout (ILcom/facebook/react/common/mapbuffer/ReadableMapBuffer;Lcom/facebook/react/common/mapbuffer/ReadableMapBuffer;FF)Lcom/facebook/react/views/text/PreparedLayout;
|
|
2443
2403
|
public fun prependUIBlock (Lcom/facebook/react/fabric/interop/UIBlock;)V
|
|
2444
2404
|
public fun profileNextBatch ()V
|
|
2445
2405
|
public fun receiveEvent (IILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
@@ -2453,9 +2413,9 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2453
2413
|
public fun sendAccessibilityEventFromJS (IILjava/lang/String;)V
|
|
2454
2414
|
public fun setJSResponder (IIIZ)V
|
|
2455
2415
|
public fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
|
|
2456
|
-
public fun startSurface (Lcom/facebook/react/
|
|
2416
|
+
public fun startSurface (Lcom/facebook/react/fabric/SurfaceHandlerBinding;Landroid/content/Context;Landroid/view/View;)V
|
|
2457
2417
|
public fun stopSurface (I)V
|
|
2458
|
-
public fun stopSurface (Lcom/facebook/react/
|
|
2418
|
+
public fun stopSurface (Lcom/facebook/react/fabric/SurfaceHandlerBinding;)V
|
|
2459
2419
|
public fun sweepActiveTouchForTag (II)V
|
|
2460
2420
|
public fun synchronouslyUpdateViewOnUIThread (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
2461
2421
|
public fun updateRootLayoutSpecs (IIIII)V
|
|
@@ -2466,52 +2426,6 @@ public final class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/f
|
|
|
2466
2426
|
public fun createUIManager (Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/UIManager;
|
|
2467
2427
|
}
|
|
2468
2428
|
|
|
2469
|
-
public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/jni/HybridClassBase, com/facebook/react/uimanager/StateWrapper {
|
|
2470
|
-
public fun destroyState ()V
|
|
2471
|
-
public fun getStateData ()Lcom/facebook/react/bridge/ReadableNativeMap;
|
|
2472
|
-
public fun getStateDataMapBuffer ()Lcom/facebook/react/common/mapbuffer/ReadableMapBuffer;
|
|
2473
|
-
public fun toString ()Ljava/lang/String;
|
|
2474
|
-
public fun updateState (Lcom/facebook/react/bridge/WritableMap;)V
|
|
2475
|
-
public fun updateStateImpl (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2476
|
-
}
|
|
2477
|
-
|
|
2478
|
-
public final class com/facebook/react/fabric/events/EventBeatManager : com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
2479
|
-
public fun <init> ()V
|
|
2480
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
2481
|
-
public fun onBatchEventDispatched ()V
|
|
2482
|
-
}
|
|
2483
|
-
|
|
2484
|
-
public final class com/facebook/react/fabric/events/EventEmitterWrapper : com/facebook/jni/HybridClassBase {
|
|
2485
|
-
public final fun destroy ()V
|
|
2486
|
-
public final fun dispatch (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;I)V
|
|
2487
|
-
public final fun dispatchEventSynchronously (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2488
|
-
public final fun dispatchUnique (Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2489
|
-
}
|
|
2490
|
-
|
|
2491
|
-
public final class com/facebook/react/fabric/events/FabricEventEmitter : com/facebook/react/uimanager/events/RCTModernEventEmitter {
|
|
2492
|
-
public fun <init> (Lcom/facebook/react/fabric/FabricUIManager;)V
|
|
2493
|
-
public fun receiveEvent (IILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2494
|
-
public fun receiveEvent (IILjava/lang/String;ZILcom/facebook/react/bridge/WritableMap;I)V
|
|
2495
|
-
public fun receiveEvent (ILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
2496
|
-
public fun receiveTouches (Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
2497
|
-
public fun receiveTouches (Ljava/lang/String;Lcom/facebook/react/bridge/WritableArray;Lcom/facebook/react/bridge/WritableArray;)V
|
|
2498
|
-
}
|
|
2499
|
-
|
|
2500
|
-
public abstract interface class com/facebook/react/fabric/mounting/LayoutMetricsConversions {
|
|
2501
|
-
public static final field Companion Lcom/facebook/react/fabric/mounting/LayoutMetricsConversions$Companion;
|
|
2502
|
-
public static fun getMaxSize (I)F
|
|
2503
|
-
public static fun getMinSize (I)F
|
|
2504
|
-
public static fun getYogaMeasureMode (FF)Lcom/facebook/yoga/YogaMeasureMode;
|
|
2505
|
-
public static fun getYogaSize (FF)F
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
|
-
public final class com/facebook/react/fabric/mounting/LayoutMetricsConversions$Companion {
|
|
2509
|
-
public final fun getMaxSize (I)F
|
|
2510
|
-
public final fun getMinSize (I)F
|
|
2511
|
-
public final fun getYogaMeasureMode (FF)Lcom/facebook/yoga/YogaMeasureMode;
|
|
2512
|
-
public final fun getYogaSize (FF)F
|
|
2513
|
-
}
|
|
2514
|
-
|
|
2515
2429
|
public class com/facebook/react/fabric/mounting/MountItemDispatcher {
|
|
2516
2430
|
public fun <init> (Lcom/facebook/react/fabric/mounting/MountingManager;Lcom/facebook/react/fabric/mounting/MountItemDispatcher$ItemDispatchListener;)V
|
|
2517
2431
|
public fun addMountItem (Lcom/facebook/react/fabric/mounting/mountitems/MountItem;)V
|
|
@@ -2593,31 +2507,6 @@ public class com/facebook/react/fabric/mounting/SurfaceMountingManager {
|
|
|
2593
2507
|
public fun updateState (ILcom/facebook/react/uimanager/StateWrapper;)V
|
|
2594
2508
|
}
|
|
2595
2509
|
|
|
2596
|
-
public abstract interface class com/facebook/react/fabric/mounting/mountitems/BatchMountItem : com/facebook/react/fabric/mounting/mountitems/MountItem {
|
|
2597
|
-
public abstract fun isBatchEmpty ()Z
|
|
2598
|
-
}
|
|
2599
|
-
|
|
2600
|
-
public abstract class com/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem : com/facebook/react/fabric/mounting/mountitems/MountItem {
|
|
2601
|
-
public fun <init> ()V
|
|
2602
|
-
public final fun getRetries ()I
|
|
2603
|
-
public final fun incrementRetries ()V
|
|
2604
|
-
}
|
|
2605
|
-
|
|
2606
|
-
public abstract interface class com/facebook/react/fabric/mounting/mountitems/MountItem {
|
|
2607
|
-
public abstract fun execute (Lcom/facebook/react/fabric/mounting/MountingManager;)V
|
|
2608
|
-
public abstract fun getSurfaceId ()I
|
|
2609
|
-
}
|
|
2610
|
-
|
|
2611
|
-
public final class com/facebook/react/fabric/mounting/mountitems/MountItemFactory {
|
|
2612
|
-
public static final field INSTANCE Lcom/facebook/react/fabric/mounting/mountitems/MountItemFactory;
|
|
2613
|
-
public static final fun createDestroyViewMountItem (II)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2614
|
-
public static final fun createDispatchCommandMountItem (IIILcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem;
|
|
2615
|
-
public static final fun createDispatchCommandMountItem (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Lcom/facebook/react/fabric/mounting/mountitems/DispatchCommandMountItem;
|
|
2616
|
-
public static final fun createIntBufferBatchMountItem (I[I[Ljava/lang/Object;I)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2617
|
-
public static final fun createPreAllocateViewMountItem (IILjava/lang/String;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/uimanager/StateWrapper;Z)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2618
|
-
public static final fun createSendAccessibilityEventMountItem (III)Lcom/facebook/react/fabric/mounting/mountitems/MountItem;
|
|
2619
|
-
}
|
|
2620
|
-
|
|
2621
2510
|
public abstract interface class com/facebook/react/interfaces/TaskInterface {
|
|
2622
2511
|
public abstract fun getError ()Ljava/lang/Exception;
|
|
2623
2512
|
public abstract fun getResult ()Ljava/lang/Object;
|
|
@@ -2628,24 +2517,6 @@ public abstract interface class com/facebook/react/interfaces/TaskInterface {
|
|
|
2628
2517
|
public abstract fun waitForCompletion (JLjava/util/concurrent/TimeUnit;)Z
|
|
2629
2518
|
}
|
|
2630
2519
|
|
|
2631
|
-
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError {
|
|
2632
|
-
public abstract fun getComponentStack ()Ljava/lang/String;
|
|
2633
|
-
public abstract fun getExtraData ()Lcom/facebook/react/bridge/ReadableMap;
|
|
2634
|
-
public abstract fun getId ()I
|
|
2635
|
-
public abstract fun getMessage ()Ljava/lang/String;
|
|
2636
|
-
public abstract fun getName ()Ljava/lang/String;
|
|
2637
|
-
public abstract fun getOriginalMessage ()Ljava/lang/String;
|
|
2638
|
-
public abstract fun getStack ()Ljava/util/List;
|
|
2639
|
-
public abstract fun isFatal ()Z
|
|
2640
|
-
}
|
|
2641
|
-
|
|
2642
|
-
public abstract interface class com/facebook/react/interfaces/exceptionmanager/ReactJsExceptionHandler$ProcessedError$StackFrame {
|
|
2643
|
-
public abstract fun getColumn ()Ljava/lang/Integer;
|
|
2644
|
-
public abstract fun getFile ()Ljava/lang/String;
|
|
2645
|
-
public abstract fun getLineNumber ()Ljava/lang/Integer;
|
|
2646
|
-
public abstract fun getMethodName ()Ljava/lang/String;
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2649
2520
|
public abstract interface class com/facebook/react/interfaces/fabric/ReactSurface {
|
|
2650
2521
|
public abstract fun clear ()V
|
|
2651
2522
|
public abstract fun detach ()V
|
|
@@ -2659,15 +2530,6 @@ public abstract interface class com/facebook/react/interfaces/fabric/ReactSurfac
|
|
|
2659
2530
|
public abstract fun stop ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
2660
2531
|
}
|
|
2661
2532
|
|
|
2662
|
-
public abstract interface class com/facebook/react/interfaces/fabric/SurfaceHandler {
|
|
2663
|
-
public abstract fun getModuleName ()Ljava/lang/String;
|
|
2664
|
-
public abstract fun getSurfaceId ()I
|
|
2665
|
-
public abstract fun isRunning ()Z
|
|
2666
|
-
public abstract fun setLayoutConstraints (IIIIZZF)V
|
|
2667
|
-
public abstract fun setMountable (Z)V
|
|
2668
|
-
public abstract fun setProps (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2669
|
-
}
|
|
2670
|
-
|
|
2671
2533
|
public final class com/facebook/react/jscexecutor/JSCExecutor : com/facebook/react/bridge/JavaScriptExecutor {
|
|
2672
2534
|
public fun getName ()Ljava/lang/String;
|
|
2673
2535
|
public static final fun loadLibrary ()V
|
|
@@ -2792,23 +2654,28 @@ public abstract interface class com/facebook/react/modules/appregistry/AppRegist
|
|
|
2792
2654
|
public abstract fun unmountApplicationComponentAtRootTag (I)V
|
|
2793
2655
|
}
|
|
2794
2656
|
|
|
2795
|
-
public class com/facebook/react/modules/blob/BlobModule : com/facebook/fbreact/specs/NativeBlobModuleSpec {
|
|
2657
|
+
public final class com/facebook/react/modules/blob/BlobModule : com/facebook/fbreact/specs/NativeBlobModuleSpec {
|
|
2658
|
+
public static final field Companion Lcom/facebook/react/modules/blob/BlobModule$Companion;
|
|
2659
|
+
public static final field NAME Ljava/lang/String;
|
|
2796
2660
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
2797
2661
|
public fun addNetworkingHandler ()V
|
|
2798
2662
|
public fun addWebSocketHandler (D)V
|
|
2799
2663
|
public fun createFromParts (Lcom/facebook/react/bridge/ReadableArray;Ljava/lang/String;)V
|
|
2800
|
-
public fun getLengthOfBlob (Ljava/lang/String;)J
|
|
2664
|
+
public final fun getLengthOfBlob (Ljava/lang/String;)J
|
|
2801
2665
|
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
2802
2666
|
public fun initialize ()V
|
|
2803
2667
|
public fun release (Ljava/lang/String;)V
|
|
2804
|
-
public fun remove (Ljava/lang/String;)V
|
|
2668
|
+
public final fun remove (Ljava/lang/String;)V
|
|
2805
2669
|
public fun removeWebSocketHandler (D)V
|
|
2806
|
-
public fun resolve (Landroid/net/Uri;)[B
|
|
2807
|
-
public fun resolve (Lcom/facebook/react/bridge/ReadableMap;)[B
|
|
2808
|
-
public fun resolve (Ljava/lang/String;II)[B
|
|
2670
|
+
public final fun resolve (Landroid/net/Uri;)[B
|
|
2671
|
+
public final fun resolve (Lcom/facebook/react/bridge/ReadableMap;)[B
|
|
2672
|
+
public final fun resolve (Ljava/lang/String;II)[B
|
|
2809
2673
|
public fun sendOverSocket (Lcom/facebook/react/bridge/ReadableMap;D)V
|
|
2810
|
-
public fun store ([B)Ljava/lang/String;
|
|
2811
|
-
public fun store ([BLjava/lang/String;)V
|
|
2674
|
+
public final fun store ([B)Ljava/lang/String;
|
|
2675
|
+
public final fun store ([BLjava/lang/String;)V
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
public final class com/facebook/react/modules/blob/BlobModule$Companion {
|
|
2812
2679
|
}
|
|
2813
2680
|
|
|
2814
2681
|
public final class com/facebook/react/modules/blob/BlobProvider : android/content/ContentProvider {
|
|
@@ -2822,27 +2689,15 @@ public final class com/facebook/react/modules/blob/BlobProvider : android/conten
|
|
|
2822
2689
|
public fun update (Landroid/net/Uri;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;)I
|
|
2823
2690
|
}
|
|
2824
2691
|
|
|
2825
|
-
public class com/facebook/react/modules/blob/FileReaderModule : com/facebook/fbreact/specs/NativeFileReaderModuleSpec {
|
|
2692
|
+
public final class com/facebook/react/modules/blob/FileReaderModule : com/facebook/fbreact/specs/NativeFileReaderModuleSpec {
|
|
2693
|
+
public static final field Companion Lcom/facebook/react/modules/blob/FileReaderModule$Companion;
|
|
2826
2694
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
2827
2695
|
public fun readAsDataURL (Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V
|
|
2828
2696
|
public fun readAsText (Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
2829
2697
|
}
|
|
2830
2698
|
|
|
2831
|
-
public final class com/facebook/react/modules/
|
|
2832
|
-
public
|
|
2833
|
-
public static final fun cleanDataFromModules (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2834
|
-
}
|
|
2835
|
-
|
|
2836
|
-
public abstract interface class com/facebook/react/modules/common/ModuleDataCleaner$Cleanable {
|
|
2837
|
-
public abstract fun clearSensitiveData ()V
|
|
2838
|
-
}
|
|
2839
|
-
|
|
2840
|
-
public class com/facebook/react/modules/core/ChoreographerCompat {
|
|
2841
|
-
public fun <init> ()V
|
|
2842
|
-
}
|
|
2843
|
-
|
|
2844
|
-
public abstract class com/facebook/react/modules/core/ChoreographerCompat$FrameCallback : android/view/Choreographer$FrameCallback {
|
|
2845
|
-
public fun <init> ()V
|
|
2699
|
+
public final class com/facebook/react/modules/blob/FileReaderModule$Companion {
|
|
2700
|
+
public final fun getNAME ()Ljava/lang/String;
|
|
2846
2701
|
}
|
|
2847
2702
|
|
|
2848
2703
|
public abstract interface class com/facebook/react/modules/core/DefaultHardwareBackBtnHandler {
|
|
@@ -2866,6 +2721,8 @@ public abstract interface class com/facebook/react/modules/core/DeviceEventManag
|
|
|
2866
2721
|
}
|
|
2867
2722
|
|
|
2868
2723
|
public class com/facebook/react/modules/core/ExceptionsManagerModule : com/facebook/fbreact/specs/NativeExceptionsManagerSpec {
|
|
2724
|
+
public static final field Companion Lcom/facebook/react/modules/core/ExceptionsManagerModule$Companion;
|
|
2725
|
+
public static final field NAME Ljava/lang/String;
|
|
2869
2726
|
public fun <init> (Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
2870
2727
|
public fun dismissRedbox ()V
|
|
2871
2728
|
public fun reportException (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
@@ -2873,16 +2730,7 @@ public class com/facebook/react/modules/core/ExceptionsManagerModule : com/faceb
|
|
|
2873
2730
|
public fun reportSoftException (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;D)V
|
|
2874
2731
|
}
|
|
2875
2732
|
|
|
2876
|
-
public class com/facebook/react/modules/core/
|
|
2877
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
2878
|
-
public fun notifyTaskFinished (D)V
|
|
2879
|
-
public fun notifyTaskRetry (DLcom/facebook/react/bridge/Promise;)V
|
|
2880
|
-
}
|
|
2881
|
-
|
|
2882
|
-
public abstract interface class com/facebook/react/modules/core/JSTimers : com/facebook/react/bridge/JavaScriptModule {
|
|
2883
|
-
public abstract fun callIdleCallbacks (D)V
|
|
2884
|
-
public abstract fun callTimers (Lcom/facebook/react/bridge/WritableArray;)V
|
|
2885
|
-
public abstract fun emitTimeDriftWarning (Ljava/lang/String;)V
|
|
2733
|
+
public final class com/facebook/react/modules/core/ExceptionsManagerModule$Companion {
|
|
2886
2734
|
}
|
|
2887
2735
|
|
|
2888
2736
|
public abstract interface class com/facebook/react/modules/core/JavaScriptTimerExecutor {
|
|
@@ -2961,15 +2809,9 @@ public final class com/facebook/react/modules/core/TimingModule : com/facebook/f
|
|
|
2961
2809
|
public final class com/facebook/react/modules/core/TimingModule$Companion {
|
|
2962
2810
|
}
|
|
2963
2811
|
|
|
2964
|
-
public final class com/facebook/react/modules/debug/DevMenuModule : com/facebook/fbreact/specs/NativeDevMenuSpec {
|
|
2965
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
2966
|
-
public fun reload ()V
|
|
2967
|
-
public fun setHotLoadingEnabled (Z)V
|
|
2968
|
-
public fun setProfilingEnabled (Z)V
|
|
2969
|
-
public fun show ()V
|
|
2970
|
-
}
|
|
2971
|
-
|
|
2972
2812
|
public final class com/facebook/react/modules/debug/DevSettingsModule : com/facebook/fbreact/specs/NativeDevSettingsSpec {
|
|
2813
|
+
public static final field Companion Lcom/facebook/react/modules/debug/DevSettingsModule$Companion;
|
|
2814
|
+
public static final field NAME Ljava/lang/String;
|
|
2973
2815
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
2974
2816
|
public fun addListener (Ljava/lang/String;)V
|
|
2975
2817
|
public fun addMenuItem (Ljava/lang/String;)V
|
|
@@ -2984,6 +2826,9 @@ public final class com/facebook/react/modules/debug/DevSettingsModule : com/face
|
|
|
2984
2826
|
public fun toggleElementInspector ()V
|
|
2985
2827
|
}
|
|
2986
2828
|
|
|
2829
|
+
public final class com/facebook/react/modules/debug/DevSettingsModule$Companion {
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2987
2832
|
public final class com/facebook/react/modules/debug/FpsDebugFrameCallback : android/view/Choreographer$FrameCallback {
|
|
2988
2833
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
2989
2834
|
public fun doFrame (J)V
|
|
@@ -3015,9 +2860,14 @@ public final class com/facebook/react/modules/debug/FpsDebugFrameCallback$FpsInf
|
|
|
3015
2860
|
}
|
|
3016
2861
|
|
|
3017
2862
|
public final class com/facebook/react/modules/debug/SourceCodeModule : com/facebook/fbreact/specs/NativeSourceCodeSpec {
|
|
2863
|
+
public static final field Companion Lcom/facebook/react/modules/debug/SourceCodeModule$Companion;
|
|
2864
|
+
public static final field NAME Ljava/lang/String;
|
|
3018
2865
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3019
2866
|
}
|
|
3020
2867
|
|
|
2868
|
+
public final class com/facebook/react/modules/debug/SourceCodeModule$Companion {
|
|
2869
|
+
}
|
|
2870
|
+
|
|
3021
2871
|
public abstract interface class com/facebook/react/modules/debug/interfaces/DeveloperSettings {
|
|
3022
2872
|
public abstract fun addMenuItem (Ljava/lang/String;)V
|
|
3023
2873
|
public abstract fun getPackagerConnectionSettings ()Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;
|
|
@@ -3039,27 +2889,22 @@ public abstract interface class com/facebook/react/modules/debug/interfaces/Deve
|
|
|
3039
2889
|
public abstract fun setStartSamplingProfilerOnInit (Z)V
|
|
3040
2890
|
}
|
|
3041
2891
|
|
|
3042
|
-
public final class com/facebook/react/modules/
|
|
3043
|
-
public
|
|
3044
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3045
|
-
public final fun emitUpdateDimensionsEvent ()V
|
|
3046
|
-
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3047
|
-
public fun invalidate ()V
|
|
3048
|
-
public fun onHostDestroy ()V
|
|
3049
|
-
public fun onHostPause ()V
|
|
3050
|
-
public fun onHostResume ()V
|
|
3051
|
-
}
|
|
3052
|
-
|
|
3053
|
-
public class com/facebook/react/modules/dialog/AlertFragment : androidx/fragment/app/DialogFragment, android/content/DialogInterface$OnClickListener {
|
|
2892
|
+
public final class com/facebook/react/modules/dialog/AlertFragment : androidx/fragment/app/DialogFragment, android/content/DialogInterface$OnClickListener {
|
|
2893
|
+
public static final field Companion Lcom/facebook/react/modules/dialog/AlertFragment$Companion;
|
|
3054
2894
|
public fun <init> ()V
|
|
3055
|
-
public fun
|
|
3056
|
-
public static fun createDialog (Landroid/content/Context;Landroid/os/Bundle;Landroid/content/DialogInterface$OnClickListener;)Landroid/app/Dialog;
|
|
2895
|
+
public static final fun createDialog (Landroid/content/Context;Landroid/os/Bundle;Landroid/content/DialogInterface$OnClickListener;)Landroid/app/Dialog;
|
|
3057
2896
|
public fun onClick (Landroid/content/DialogInterface;I)V
|
|
3058
2897
|
public fun onCreateDialog (Landroid/os/Bundle;)Landroid/app/Dialog;
|
|
3059
2898
|
public fun onDismiss (Landroid/content/DialogInterface;)V
|
|
3060
2899
|
}
|
|
3061
2900
|
|
|
3062
|
-
public class com/facebook/react/modules/dialog/
|
|
2901
|
+
public final class com/facebook/react/modules/dialog/AlertFragment$Companion {
|
|
2902
|
+
public final fun createDialog (Landroid/content/Context;Landroid/os/Bundle;Landroid/content/DialogInterface$OnClickListener;)Landroid/app/Dialog;
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
public final class com/facebook/react/modules/dialog/DialogModule : com/facebook/fbreact/specs/NativeDialogManagerAndroidSpec, com/facebook/react/bridge/LifecycleEventListener {
|
|
2906
|
+
public static final field Companion Lcom/facebook/react/modules/dialog/DialogModule$Companion;
|
|
2907
|
+
public static final field NAME Ljava/lang/String;
|
|
3063
2908
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3064
2909
|
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3065
2910
|
public fun initialize ()V
|
|
@@ -3070,6 +2915,9 @@ public class com/facebook/react/modules/dialog/DialogModule : com/facebook/fbrea
|
|
|
3070
2915
|
public fun showAlert (Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Callback;Lcom/facebook/react/bridge/Callback;)V
|
|
3071
2916
|
}
|
|
3072
2917
|
|
|
2918
|
+
public final class com/facebook/react/modules/dialog/DialogModule$Companion {
|
|
2919
|
+
}
|
|
2920
|
+
|
|
3073
2921
|
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 {
|
|
3074
2922
|
public static final field Companion Lcom/facebook/react/modules/fresco/FrescoModule$Companion;
|
|
3075
2923
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3120,19 +2968,6 @@ public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Co
|
|
|
3120
2968
|
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;
|
|
3121
2969
|
}
|
|
3122
2970
|
|
|
3123
|
-
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
|
|
3124
|
-
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
|
|
3125
|
-
public static final field NAME Ljava/lang/String;
|
|
3126
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3127
|
-
public fun allowRTL (Z)V
|
|
3128
|
-
public fun forceRTL (Z)V
|
|
3129
|
-
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3130
|
-
public fun swapLeftAndRightInRTL (Z)V
|
|
3131
|
-
}
|
|
3132
|
-
|
|
3133
|
-
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule$Companion {
|
|
3134
|
-
}
|
|
3135
|
-
|
|
3136
2971
|
public final class com/facebook/react/modules/i18nmanager/I18nUtil {
|
|
3137
2972
|
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nUtil$Companion;
|
|
3138
2973
|
public final fun allowRTL (Landroid/content/Context;Z)V
|
|
@@ -3148,25 +2983,6 @@ public final class com/facebook/react/modules/i18nmanager/I18nUtil$Companion {
|
|
|
3148
2983
|
public final fun getInstance ()Lcom/facebook/react/modules/i18nmanager/I18nUtil;
|
|
3149
2984
|
}
|
|
3150
2985
|
|
|
3151
|
-
public final class com/facebook/react/modules/image/ImageLoaderModule : com/facebook/fbreact/specs/NativeImageLoaderAndroidSpec, com/facebook/react/bridge/LifecycleEventListener {
|
|
3152
|
-
public static final field Companion Lcom/facebook/react/modules/image/ImageLoaderModule$Companion;
|
|
3153
|
-
public static final field NAME Ljava/lang/String;
|
|
3154
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3155
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/imagepipeline/core/ImagePipeline;Lcom/facebook/react/views/image/ReactCallerContextFactory;)V
|
|
3156
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/Object;)V
|
|
3157
|
-
public fun abortRequest (D)V
|
|
3158
|
-
public fun getSize (Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3159
|
-
public fun getSizeWithHeaders (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V
|
|
3160
|
-
public fun onHostDestroy ()V
|
|
3161
|
-
public fun onHostPause ()V
|
|
3162
|
-
public fun onHostResume ()V
|
|
3163
|
-
public fun prefetchImage (Ljava/lang/String;DLcom/facebook/react/bridge/Promise;)V
|
|
3164
|
-
public fun queryCache (Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V
|
|
3165
|
-
}
|
|
3166
|
-
|
|
3167
|
-
public final class com/facebook/react/modules/image/ImageLoaderModule$Companion {
|
|
3168
|
-
}
|
|
3169
|
-
|
|
3170
2986
|
public class com/facebook/react/modules/intent/IntentModule : com/facebook/fbreact/specs/NativeIntentAndroidSpec {
|
|
3171
2987
|
public static final field Companion Lcom/facebook/react/modules/intent/IntentModule$Companion;
|
|
3172
2988
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3206,25 +3022,31 @@ public abstract interface class com/facebook/react/modules/network/NetworkInterc
|
|
|
3206
3022
|
}
|
|
3207
3023
|
|
|
3208
3024
|
public final class com/facebook/react/modules/network/NetworkingModule : com/facebook/fbreact/specs/NativeNetworkingAndroidSpec {
|
|
3025
|
+
public static final field Companion Lcom/facebook/react/modules/network/NetworkingModule$Companion;
|
|
3026
|
+
public static final field NAME Ljava/lang/String;
|
|
3209
3027
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3210
3028
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)V
|
|
3211
3029
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;Lokhttp3/OkHttpClient;Ljava/util/List;)V
|
|
3212
3030
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;)V
|
|
3213
3031
|
public fun abortRequest (D)V
|
|
3214
3032
|
public fun addListener (Ljava/lang/String;)V
|
|
3215
|
-
public fun addRequestBodyHandler (Lcom/facebook/react/modules/network/NetworkingModule$RequestBodyHandler;)V
|
|
3216
|
-
public fun addResponseHandler (Lcom/facebook/react/modules/network/NetworkingModule$ResponseHandler;)V
|
|
3217
|
-
public fun addUriHandler (Lcom/facebook/react/modules/network/NetworkingModule$UriHandler;)V
|
|
3033
|
+
public final fun addRequestBodyHandler (Lcom/facebook/react/modules/network/NetworkingModule$RequestBodyHandler;)V
|
|
3034
|
+
public final fun addResponseHandler (Lcom/facebook/react/modules/network/NetworkingModule$ResponseHandler;)V
|
|
3035
|
+
public final fun addUriHandler (Lcom/facebook/react/modules/network/NetworkingModule$UriHandler;)V
|
|
3218
3036
|
public fun clearCookies (Lcom/facebook/react/bridge/Callback;)V
|
|
3219
3037
|
public fun initialize ()V
|
|
3220
3038
|
public fun invalidate ()V
|
|
3221
3039
|
public fun removeListeners (D)V
|
|
3222
|
-
public fun removeRequestBodyHandler (Lcom/facebook/react/modules/network/NetworkingModule$RequestBodyHandler;)V
|
|
3223
|
-
public fun removeResponseHandler (Lcom/facebook/react/modules/network/NetworkingModule$ResponseHandler;)V
|
|
3224
|
-
public fun removeUriHandler (Lcom/facebook/react/modules/network/NetworkingModule$UriHandler;)V
|
|
3040
|
+
public final fun removeRequestBodyHandler (Lcom/facebook/react/modules/network/NetworkingModule$RequestBodyHandler;)V
|
|
3041
|
+
public final fun removeResponseHandler (Lcom/facebook/react/modules/network/NetworkingModule$ResponseHandler;)V
|
|
3042
|
+
public final fun removeUriHandler (Lcom/facebook/react/modules/network/NetworkingModule$UriHandler;)V
|
|
3225
3043
|
public fun sendRequest (Ljava/lang/String;Ljava/lang/String;DLcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;ZDZ)V
|
|
3226
|
-
public fun sendRequestInternal (Ljava/lang/String;Ljava/lang/String;ILcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;ZIZ)V
|
|
3227
|
-
public static fun setCustomClientBuilder (Lcom/facebook/react/modules/network/CustomClientBuilder;)V
|
|
3044
|
+
public final fun sendRequestInternal (Ljava/lang/String;Ljava/lang/String;ILcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;ZIZ)V
|
|
3045
|
+
public static final fun setCustomClientBuilder (Lcom/facebook/react/modules/network/CustomClientBuilder;)V
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
public final class com/facebook/react/modules/network/NetworkingModule$Companion {
|
|
3049
|
+
public final fun setCustomClientBuilder (Lcom/facebook/react/modules/network/CustomClientBuilder;)V
|
|
3228
3050
|
}
|
|
3229
3051
|
|
|
3230
3052
|
public abstract interface class com/facebook/react/modules/network/NetworkingModule$CustomClientBuilder : com/facebook/react/modules/network/CustomClientBuilder {
|
|
@@ -3270,12 +3092,12 @@ public abstract interface class com/facebook/react/modules/network/ProgressListe
|
|
|
3270
3092
|
public abstract fun onProgress (JJZ)V
|
|
3271
3093
|
}
|
|
3272
3094
|
|
|
3273
|
-
public class com/facebook/react/modules/network/ProgressResponseBody : okhttp3/ResponseBody {
|
|
3095
|
+
public final class com/facebook/react/modules/network/ProgressResponseBody : okhttp3/ResponseBody {
|
|
3274
3096
|
public fun <init> (Lokhttp3/ResponseBody;Lcom/facebook/react/modules/network/ProgressListener;)V
|
|
3275
3097
|
public fun contentLength ()J
|
|
3276
3098
|
public fun contentType ()Lokhttp3/MediaType;
|
|
3277
3099
|
public fun source ()Lokio/BufferedSource;
|
|
3278
|
-
public fun totalBytesRead ()J
|
|
3100
|
+
public final fun totalBytesRead ()J
|
|
3279
3101
|
}
|
|
3280
3102
|
|
|
3281
3103
|
public final class com/facebook/react/modules/network/ReactCookieJarContainer : com/facebook/react/modules/network/CookieJarContainer {
|
|
@@ -3300,40 +3122,6 @@ public final class com/facebook/react/modules/permissions/PermissionsModule : co
|
|
|
3300
3122
|
public final class com/facebook/react/modules/permissions/PermissionsModule$Companion {
|
|
3301
3123
|
}
|
|
3302
3124
|
|
|
3303
|
-
public final class com/facebook/react/modules/share/ShareModule : com/facebook/fbreact/specs/NativeShareModuleSpec {
|
|
3304
|
-
public static final field Companion Lcom/facebook/react/modules/share/ShareModule$Companion;
|
|
3305
|
-
public static final field ERROR_INVALID_CONTENT Ljava/lang/String;
|
|
3306
|
-
public static final field NAME Ljava/lang/String;
|
|
3307
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3308
|
-
public fun share (Lcom/facebook/react/bridge/ReadableMap;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V
|
|
3309
|
-
}
|
|
3310
|
-
|
|
3311
|
-
public final class com/facebook/react/modules/share/ShareModule$Companion {
|
|
3312
|
-
}
|
|
3313
|
-
|
|
3314
|
-
public final class com/facebook/react/modules/sound/SoundManagerModule : com/facebook/fbreact/specs/NativeSoundManagerSpec {
|
|
3315
|
-
public static final field Companion Lcom/facebook/react/modules/sound/SoundManagerModule$Companion;
|
|
3316
|
-
public static final field NAME Ljava/lang/String;
|
|
3317
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3318
|
-
public fun playTouchSound ()V
|
|
3319
|
-
}
|
|
3320
|
-
|
|
3321
|
-
public final class com/facebook/react/modules/sound/SoundManagerModule$Companion {
|
|
3322
|
-
}
|
|
3323
|
-
|
|
3324
|
-
public final class com/facebook/react/modules/statusbar/StatusBarModule : com/facebook/fbreact/specs/NativeStatusBarManagerAndroidSpec {
|
|
3325
|
-
public static final field Companion Lcom/facebook/react/modules/statusbar/StatusBarModule$Companion;
|
|
3326
|
-
public static final field NAME Ljava/lang/String;
|
|
3327
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3328
|
-
public fun setColor (DZ)V
|
|
3329
|
-
public fun setHidden (Z)V
|
|
3330
|
-
public fun setStyle (Ljava/lang/String;)V
|
|
3331
|
-
public fun setTranslucent (Z)V
|
|
3332
|
-
}
|
|
3333
|
-
|
|
3334
|
-
public final class com/facebook/react/modules/statusbar/StatusBarModule$Companion {
|
|
3335
|
-
}
|
|
3336
|
-
|
|
3337
3125
|
public final class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
3338
3126
|
public static final field DEVICE_LOCALHOST Ljava/lang/String;
|
|
3339
3127
|
public static final field EMULATOR_LOCALHOST Ljava/lang/String;
|
|
@@ -3346,30 +3134,23 @@ public final class com/facebook/react/modules/systeminfo/AndroidInfoHelpers {
|
|
|
3346
3134
|
public static final fun getInspectorHostMetadata (Landroid/content/Context;)Ljava/util/Map;
|
|
3347
3135
|
public static final fun getServerHost (I)Ljava/lang/String;
|
|
3348
3136
|
public static final fun getServerHost (Landroid/content/Context;)Ljava/lang/String;
|
|
3137
|
+
public static final fun getServerHost (Landroid/content/Context;I)Ljava/lang/String;
|
|
3349
3138
|
}
|
|
3350
3139
|
|
|
3351
3140
|
public final class com/facebook/react/modules/systeminfo/AndroidInfoModule : com/facebook/fbreact/specs/NativePlatformConstantsAndroidSpec {
|
|
3141
|
+
public static final field Companion Lcom/facebook/react/modules/systeminfo/AndroidInfoModule$Companion;
|
|
3142
|
+
public static final field NAME Ljava/lang/String;
|
|
3352
3143
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3353
3144
|
public fun getAndroidID ()Ljava/lang/String;
|
|
3354
3145
|
public fun invalidate ()V
|
|
3355
3146
|
}
|
|
3356
3147
|
|
|
3357
|
-
public class com/facebook/react/modules/systeminfo/
|
|
3358
|
-
public static final field VERSION Ljava/util/Map;
|
|
3359
|
-
public fun <init> ()V
|
|
3360
|
-
}
|
|
3361
|
-
|
|
3362
|
-
public final class com/facebook/react/modules/toast/ToastModule : com/facebook/fbreact/specs/NativeToastAndroidSpec {
|
|
3363
|
-
public static final field Companion Lcom/facebook/react/modules/toast/ToastModule$Companion;
|
|
3364
|
-
public static final field NAME Ljava/lang/String;
|
|
3365
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
3366
|
-
public fun getTypedExportedConstants ()Ljava/util/Map;
|
|
3367
|
-
public fun show (Ljava/lang/String;D)V
|
|
3368
|
-
public fun showWithGravity (Ljava/lang/String;DD)V
|
|
3369
|
-
public fun showWithGravityAndOffset (Ljava/lang/String;DDDD)V
|
|
3148
|
+
public final class com/facebook/react/modules/systeminfo/AndroidInfoModule$Companion {
|
|
3370
3149
|
}
|
|
3371
3150
|
|
|
3372
|
-
public final class com/facebook/react/modules/
|
|
3151
|
+
public final class com/facebook/react/modules/systeminfo/ReactNativeVersion {
|
|
3152
|
+
public static final field INSTANCE Lcom/facebook/react/modules/systeminfo/ReactNativeVersion;
|
|
3153
|
+
public static final field VERSION Ljava/util/Map;
|
|
3373
3154
|
}
|
|
3374
3155
|
|
|
3375
3156
|
public final class com/facebook/react/modules/websocket/WebSocketModule : com/facebook/fbreact/specs/NativeWebSocketModuleSpec {
|
|
@@ -3398,17 +3179,18 @@ public abstract interface class com/facebook/react/modules/websocket/WebSocketMo
|
|
|
3398
3179
|
public abstract fun onMessage (Lokio/ByteString;Lcom/facebook/react/bridge/WritableMap;)V
|
|
3399
3180
|
}
|
|
3400
3181
|
|
|
3401
|
-
public class com/facebook/react/packagerconnection/FileIoHandler : java/lang/Runnable {
|
|
3182
|
+
public final class com/facebook/react/packagerconnection/FileIoHandler : java/lang/Runnable {
|
|
3402
3183
|
public fun <init> ()V
|
|
3403
|
-
public fun handlers ()Ljava/util/Map;
|
|
3184
|
+
public final fun handlers ()Ljava/util/Map;
|
|
3404
3185
|
public fun run ()V
|
|
3405
3186
|
}
|
|
3406
3187
|
|
|
3407
3188
|
public final class com/facebook/react/packagerconnection/JSPackagerClient : com/facebook/react/packagerconnection/ReconnectingWebSocket$MessageCallback {
|
|
3408
3189
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;Ljava/util/Map;)V
|
|
3409
3190
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;Ljava/util/Map;Lcom/facebook/react/packagerconnection/ReconnectingWebSocket$ConnectionCallback;)V
|
|
3410
|
-
public fun
|
|
3411
|
-
public fun
|
|
3191
|
+
public synthetic fun <init> (Ljava/lang/String;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;Ljava/util/Map;Lcom/facebook/react/packagerconnection/ReconnectingWebSocket$ConnectionCallback;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
3192
|
+
public final fun close ()V
|
|
3193
|
+
public final fun init ()V
|
|
3412
3194
|
public fun onMessage (Ljava/lang/String;)V
|
|
3413
3195
|
public fun onMessage (Lokio/ByteString;)V
|
|
3414
3196
|
}
|
|
@@ -3424,21 +3206,22 @@ public class com/facebook/react/packagerconnection/PackagerConnectionSettings {
|
|
|
3424
3206
|
public final fun getAdditionalOptionsForPackager ()Ljava/util/Map;
|
|
3425
3207
|
public fun getDebugServerHost ()Ljava/lang/String;
|
|
3426
3208
|
public final fun getPackageName ()Ljava/lang/String;
|
|
3209
|
+
public fun resetDebugServerHost ()V
|
|
3427
3210
|
public final fun setAdditionalOptionForPackager (Ljava/lang/String;Ljava/lang/String;)V
|
|
3428
3211
|
public fun setDebugServerHost (Ljava/lang/String;)V
|
|
3429
3212
|
}
|
|
3430
3213
|
|
|
3431
3214
|
public final class com/facebook/react/packagerconnection/ReconnectingWebSocket : okhttp3/WebSocketListener {
|
|
3432
3215
|
public fun <init> (Ljava/lang/String;Lcom/facebook/react/packagerconnection/ReconnectingWebSocket$MessageCallback;Lcom/facebook/react/packagerconnection/ReconnectingWebSocket$ConnectionCallback;)V
|
|
3433
|
-
public fun closeQuietly ()V
|
|
3434
|
-
public fun connect ()V
|
|
3216
|
+
public final fun closeQuietly ()V
|
|
3217
|
+
public final fun connect ()V
|
|
3435
3218
|
public fun onClosed (Lokhttp3/WebSocket;ILjava/lang/String;)V
|
|
3436
3219
|
public fun onFailure (Lokhttp3/WebSocket;Ljava/lang/Throwable;Lokhttp3/Response;)V
|
|
3437
3220
|
public fun onMessage (Lokhttp3/WebSocket;Ljava/lang/String;)V
|
|
3438
3221
|
public fun onMessage (Lokhttp3/WebSocket;Lokio/ByteString;)V
|
|
3439
3222
|
public fun onOpen (Lokhttp3/WebSocket;Lokhttp3/Response;)V
|
|
3440
|
-
public fun sendMessage (Ljava/lang/String;)V
|
|
3441
|
-
public fun sendMessage (Lokio/ByteString;)V
|
|
3223
|
+
public final fun sendMessage (Ljava/lang/String;)V
|
|
3224
|
+
public final fun sendMessage (Lokio/ByteString;)V
|
|
3442
3225
|
}
|
|
3443
3226
|
|
|
3444
3227
|
public abstract interface class com/facebook/react/packagerconnection/ReconnectingWebSocket$ConnectionCallback {
|
|
@@ -3456,12 +3239,6 @@ public abstract interface class com/facebook/react/packagerconnection/RequestHan
|
|
|
3456
3239
|
public abstract fun onRequest (Ljava/lang/Object;Lcom/facebook/react/packagerconnection/Responder;)V
|
|
3457
3240
|
}
|
|
3458
3241
|
|
|
3459
|
-
public abstract class com/facebook/react/packagerconnection/RequestOnlyHandler : com/facebook/react/packagerconnection/RequestHandler {
|
|
3460
|
-
public fun <init> ()V
|
|
3461
|
-
public final fun onNotification (Ljava/lang/Object;)V
|
|
3462
|
-
public abstract fun onRequest (Ljava/lang/Object;Lcom/facebook/react/packagerconnection/Responder;)V
|
|
3463
|
-
}
|
|
3464
|
-
|
|
3465
3242
|
public abstract interface class com/facebook/react/packagerconnection/Responder {
|
|
3466
3243
|
public abstract fun error (Ljava/lang/Object;)V
|
|
3467
3244
|
public abstract fun respond (Ljava/lang/Object;)V
|
|
@@ -3471,40 +3248,6 @@ public abstract class com/facebook/react/runtime/BindingsInstaller {
|
|
|
3471
3248
|
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3472
3249
|
}
|
|
3473
3250
|
|
|
3474
|
-
public final class com/facebook/react/runtime/BridgelessCatalystInstance : com/facebook/react/bridge/CatalystInstance {
|
|
3475
|
-
public fun <init> (Lcom/facebook/react/runtime/ReactHostImpl;)V
|
|
3476
|
-
public fun addBridgeIdleDebugListener (Lcom/facebook/react/bridge/NotThreadSafeBridgeIdleDebugListener;)V
|
|
3477
|
-
public fun callFunction (Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/bridge/NativeArray;)V
|
|
3478
|
-
public fun destroy ()V
|
|
3479
|
-
public fun extendNativeModules (Lcom/facebook/react/bridge/NativeModuleRegistry;)V
|
|
3480
|
-
public fun getFabricUIManager ()Lcom/facebook/react/bridge/UIManager;
|
|
3481
|
-
public fun getJSCallInvokerHolder ()Lcom/facebook/react/turbomodule/core/interfaces/CallInvokerHolder;
|
|
3482
|
-
public fun getJSModule (Ljava/lang/Class;)Lcom/facebook/react/bridge/JavaScriptModule;
|
|
3483
|
-
public fun getJavaScriptContextHolder ()Lcom/facebook/react/bridge/JavaScriptContextHolder;
|
|
3484
|
-
public fun getNativeMethodCallInvokerHolder ()Lcom/facebook/react/turbomodule/core/interfaces/NativeMethodCallInvokerHolder;
|
|
3485
|
-
public fun getNativeModule (Ljava/lang/Class;)Lcom/facebook/react/bridge/NativeModule;
|
|
3486
|
-
public fun getNativeModule (Ljava/lang/String;)Lcom/facebook/react/bridge/NativeModule;
|
|
3487
|
-
public fun getNativeModules ()Ljava/util/Collection;
|
|
3488
|
-
public fun getReactQueueConfiguration ()Lcom/facebook/react/bridge/queue/ReactQueueConfiguration;
|
|
3489
|
-
public fun getRuntimeExecutor ()Lcom/facebook/react/bridge/RuntimeExecutor;
|
|
3490
|
-
public fun getRuntimeScheduler ()Lcom/facebook/react/bridge/RuntimeScheduler;
|
|
3491
|
-
public fun getSourceURL ()Ljava/lang/String;
|
|
3492
|
-
public fun handleMemoryPressure (I)V
|
|
3493
|
-
public fun hasNativeModule (Ljava/lang/Class;)Z
|
|
3494
|
-
public fun hasRunJSBundle ()Z
|
|
3495
|
-
public fun invokeCallback (ILcom/facebook/react/bridge/NativeArrayInterface;)V
|
|
3496
|
-
public fun isDestroyed ()Z
|
|
3497
|
-
public fun loadScriptFromAssets (Landroid/content/res/AssetManager;Ljava/lang/String;Z)V
|
|
3498
|
-
public fun loadScriptFromFile (Ljava/lang/String;Ljava/lang/String;Z)V
|
|
3499
|
-
public fun loadSplitBundleFromFile (Ljava/lang/String;Ljava/lang/String;)V
|
|
3500
|
-
public fun registerSegment (ILjava/lang/String;)V
|
|
3501
|
-
public fun removeBridgeIdleDebugListener (Lcom/facebook/react/bridge/NotThreadSafeBridgeIdleDebugListener;)V
|
|
3502
|
-
public fun runJSBundle ()V
|
|
3503
|
-
public fun setFabricUIManager (Lcom/facebook/react/bridge/UIManager;)V
|
|
3504
|
-
public fun setSourceURLs (Ljava/lang/String;Ljava/lang/String;)V
|
|
3505
|
-
public fun setTurboModuleRegistry (Lcom/facebook/react/internal/turbomodule/core/interfaces/TurboModuleRegistry;)V
|
|
3506
|
-
}
|
|
3507
|
-
|
|
3508
3251
|
public class com/facebook/react/runtime/CoreReactPackage$$ReactModuleInfoProvider : com/facebook/react/module/model/ReactModuleInfoProvider {
|
|
3509
3252
|
public fun <init> ()V
|
|
3510
3253
|
public fun getReactModuleInfos ()Ljava/util/Map;
|
|
@@ -3551,12 +3294,12 @@ public class com/facebook/react/runtime/ReactHostImpl : com/facebook/react/React
|
|
|
3551
3294
|
public fun start ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
3552
3295
|
}
|
|
3553
3296
|
|
|
3554
|
-
public class com/facebook/react/runtime/ReactSurfaceImpl : com/facebook/react/interfaces/fabric/ReactSurface {
|
|
3297
|
+
public final class com/facebook/react/runtime/ReactSurfaceImpl : com/facebook/react/interfaces/fabric/ReactSurface {
|
|
3555
3298
|
public fun <init> (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)V
|
|
3556
|
-
public fun attach (Lcom/facebook/react/ReactHost;)V
|
|
3557
|
-
public fun attachView (Lcom/facebook/react/runtime/ReactSurfaceView;)V
|
|
3299
|
+
public final fun attach (Lcom/facebook/react/ReactHost;)V
|
|
3300
|
+
public final fun attachView (Lcom/facebook/react/runtime/ReactSurfaceView;)V
|
|
3558
3301
|
public fun clear ()V
|
|
3559
|
-
public static fun createWithView (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/runtime/ReactSurfaceImpl;
|
|
3302
|
+
public static final fun createWithView (Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Lcom/facebook/react/runtime/ReactSurfaceImpl;
|
|
3560
3303
|
public fun detach ()V
|
|
3561
3304
|
public fun getContext ()Landroid/content/Context;
|
|
3562
3305
|
public fun getModuleName ()Ljava/lang/String;
|
|
@@ -3566,7 +3309,7 @@ public class com/facebook/react/runtime/ReactSurfaceImpl : com/facebook/react/in
|
|
|
3566
3309
|
public fun prerender ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
3567
3310
|
public fun start ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
3568
3311
|
public fun stop ()Lcom/facebook/react/interfaces/TaskInterface;
|
|
3569
|
-
public fun updateInitProps (Landroid/os/Bundle;)V
|
|
3312
|
+
public final fun updateInitProps (Landroid/os/Bundle;)V
|
|
3570
3313
|
}
|
|
3571
3314
|
|
|
3572
3315
|
public final class com/facebook/react/runtime/ReactSurfaceView : com/facebook/react/ReactRootView {
|
|
@@ -3585,6 +3328,7 @@ public final class com/facebook/react/runtime/ReactSurfaceView : com/facebook/re
|
|
|
3585
3328
|
}
|
|
3586
3329
|
|
|
3587
3330
|
public abstract class com/facebook/react/runtime/cxxreactpackage/CxxReactPackage {
|
|
3331
|
+
protected field mHybridData Lcom/facebook/jni/HybridData;
|
|
3588
3332
|
protected fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3589
3333
|
}
|
|
3590
3334
|
|
|
@@ -3639,6 +3383,7 @@ public final class com/facebook/react/soloader/OpenSourceMergedSoMapping : com/f
|
|
|
3639
3383
|
public final fun libreact_newarchdefaults_so ()I
|
|
3640
3384
|
public final fun libreactnative_so ()I
|
|
3641
3385
|
public final fun libreactnativeblob_so ()I
|
|
3386
|
+
public final fun libreactnativejni_common_so ()I
|
|
3642
3387
|
public final fun libreactnativejni_so ()I
|
|
3643
3388
|
public final fun librninstance_so ()I
|
|
3644
3389
|
public final fun libturbomodulejsijni_so ()I
|
|
@@ -3647,31 +3392,10 @@ public final class com/facebook/react/soloader/OpenSourceMergedSoMapping : com/f
|
|
|
3647
3392
|
public fun mapLibName (Ljava/lang/String;)Ljava/lang/String;
|
|
3648
3393
|
}
|
|
3649
3394
|
|
|
3650
|
-
public final class com/facebook/react/touch/JSResponderHandler : com/facebook/react/touch/OnInterceptTouchEventListener {
|
|
3651
|
-
public fun <init> ()V
|
|
3652
|
-
public final fun clearJSResponder ()V
|
|
3653
|
-
public fun onInterceptTouchEvent (Landroid/view/ViewGroup;Landroid/view/MotionEvent;)Z
|
|
3654
|
-
public final fun setJSResponder (ILandroid/view/ViewParent;)V
|
|
3655
|
-
}
|
|
3656
|
-
|
|
3657
|
-
public abstract interface class com/facebook/react/touch/OnInterceptTouchEventListener {
|
|
3658
|
-
public abstract fun onInterceptTouchEvent (Landroid/view/ViewGroup;Landroid/view/MotionEvent;)Z
|
|
3659
|
-
}
|
|
3660
|
-
|
|
3661
3395
|
public abstract interface class com/facebook/react/touch/ReactHitSlopView {
|
|
3662
3396
|
public abstract fun getHitSlopRect ()Landroid/graphics/Rect;
|
|
3663
3397
|
}
|
|
3664
3398
|
|
|
3665
|
-
public abstract interface class com/facebook/react/touch/ReactInterceptingViewGroup {
|
|
3666
|
-
public abstract fun setOnInterceptTouchEventListener (Lcom/facebook/react/touch/OnInterceptTouchEventListener;)V
|
|
3667
|
-
}
|
|
3668
|
-
|
|
3669
|
-
public final class com/facebook/react/turbomodule/core/CallInvokerHolderImpl : com/facebook/react/turbomodule/core/interfaces/CallInvokerHolder {
|
|
3670
|
-
}
|
|
3671
|
-
|
|
3672
|
-
public final class com/facebook/react/turbomodule/core/NativeMethodCallInvokerHolderImpl : com/facebook/react/turbomodule/core/interfaces/NativeMethodCallInvokerHolder {
|
|
3673
|
-
}
|
|
3674
|
-
|
|
3675
3399
|
public final class com/facebook/react/turbomodule/core/interfaces/BindingsInstallerHolder {
|
|
3676
3400
|
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
3677
3401
|
}
|
|
@@ -3734,6 +3458,7 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
3734
3458
|
public fun setAccessibilityLabel (Landroid/view/View;Ljava/lang/String;)V
|
|
3735
3459
|
public fun setAccessibilityLabelledBy (Landroid/view/View;Lcom/facebook/react/bridge/Dynamic;)V
|
|
3736
3460
|
public fun setAccessibilityLiveRegion (Landroid/view/View;Ljava/lang/String;)V
|
|
3461
|
+
public fun setAccessibilityOrder (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
3737
3462
|
public fun setAccessibilityRole (Landroid/view/View;Ljava/lang/String;)V
|
|
3738
3463
|
public fun setAccessibilityValue (Landroid/view/View;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
3739
3464
|
public fun setBackgroundColor (Landroid/view/View;I)V
|
|
@@ -3780,6 +3505,7 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
3780
3505
|
public fun setRotation (Landroid/view/View;F)V
|
|
3781
3506
|
public fun setScaleX (Landroid/view/View;F)V
|
|
3782
3507
|
public fun setScaleY (Landroid/view/View;F)V
|
|
3508
|
+
public fun setScreenReaderFocusable (Landroid/view/View;Z)V
|
|
3783
3509
|
public fun setShadowColor (Landroid/view/View;I)V
|
|
3784
3510
|
public fun setShouldBlockNativeResponder (Landroid/view/View;Z)V
|
|
3785
3511
|
public fun setStartShouldSetResponder (Landroid/view/View;Z)V
|
|
@@ -3920,7 +3646,6 @@ public final class com/facebook/react/uimanager/LengthPercentage {
|
|
|
3920
3646
|
public final fun getType ()Lcom/facebook/react/uimanager/LengthPercentageType;
|
|
3921
3647
|
public fun hashCode ()I
|
|
3922
3648
|
public final fun resolve (F)F
|
|
3923
|
-
public final fun resolve (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
3924
3649
|
public static final fun setFromDynamic (Lcom/facebook/react/bridge/Dynamic;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
3925
3650
|
public fun toString ()Ljava/lang/String;
|
|
3926
3651
|
}
|
|
@@ -4025,16 +3750,19 @@ public class com/facebook/react/uimanager/NativeViewHierarchyOptimizer {
|
|
|
4025
3750
|
public fun onBatchComplete ()V
|
|
4026
3751
|
}
|
|
4027
3752
|
|
|
4028
|
-
public class com/facebook/react/uimanager/OnLayoutEvent : com/facebook/react/uimanager/events/Event {
|
|
4029
|
-
|
|
3753
|
+
public final class com/facebook/react/uimanager/OnLayoutEvent : com/facebook/react/uimanager/events/Event {
|
|
3754
|
+
public static final field Companion Lcom/facebook/react/uimanager/OnLayoutEvent$Companion;
|
|
4030
3755
|
public fun getEventName ()Ljava/lang/String;
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
public static fun obtain (IIIII)Lcom/facebook/react/uimanager/OnLayoutEvent;
|
|
4034
|
-
public static fun obtain (IIIIII)Lcom/facebook/react/uimanager/OnLayoutEvent;
|
|
3756
|
+
public static final fun obtain (IIIII)Lcom/facebook/react/uimanager/OnLayoutEvent;
|
|
3757
|
+
public static final fun obtain (IIIIII)Lcom/facebook/react/uimanager/OnLayoutEvent;
|
|
4035
3758
|
public fun onDispose ()V
|
|
4036
3759
|
}
|
|
4037
3760
|
|
|
3761
|
+
public final class com/facebook/react/uimanager/OnLayoutEvent$Companion {
|
|
3762
|
+
public final fun obtain (IIIII)Lcom/facebook/react/uimanager/OnLayoutEvent;
|
|
3763
|
+
public final fun obtain (IIIIII)Lcom/facebook/react/uimanager/OnLayoutEvent;
|
|
3764
|
+
}
|
|
3765
|
+
|
|
4038
3766
|
public final class com/facebook/react/uimanager/PixelUtil {
|
|
4039
3767
|
public static final field INSTANCE Lcom/facebook/react/uimanager/PixelUtil;
|
|
4040
3768
|
public final fun dpToPx (D)F
|
|
@@ -4229,12 +3957,13 @@ public abstract interface class com/facebook/react/uimanager/ReactClippingViewGr
|
|
|
4229
3957
|
public abstract fun getRemoveClippedSubviews ()Z
|
|
4230
3958
|
public abstract fun setRemoveClippedSubviews (Z)V
|
|
4231
3959
|
public abstract fun updateClippingRect ()V
|
|
3960
|
+
public abstract fun updateClippingRect (Ljava/util/Set;)V
|
|
4232
3961
|
}
|
|
4233
3962
|
|
|
4234
|
-
public class com/facebook/react/uimanager/ReactClippingViewGroupHelper {
|
|
3963
|
+
public final class com/facebook/react/uimanager/ReactClippingViewGroupHelper {
|
|
3964
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/ReactClippingViewGroupHelper;
|
|
4235
3965
|
public static final field PROP_REMOVE_CLIPPED_SUBVIEWS Ljava/lang/String;
|
|
4236
|
-
public fun
|
|
4237
|
-
public static fun calculateClippingRect (Landroid/view/View;Landroid/graphics/Rect;)V
|
|
3966
|
+
public static final fun calculateClippingRect (Landroid/view/View;Landroid/graphics/Rect;)V
|
|
4238
3967
|
}
|
|
4239
3968
|
|
|
4240
3969
|
public abstract interface class com/facebook/react/uimanager/ReactCompoundView {
|
|
@@ -4245,10 +3974,6 @@ public abstract interface class com/facebook/react/uimanager/ReactCompoundViewGr
|
|
|
4245
3974
|
public abstract fun interceptsTouchEvent (FF)Z
|
|
4246
3975
|
}
|
|
4247
3976
|
|
|
4248
|
-
public final class com/facebook/react/uimanager/ReactInvalidPropertyException : java/lang/RuntimeException {
|
|
4249
|
-
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
|
|
4250
|
-
}
|
|
4251
|
-
|
|
4252
3977
|
public abstract interface class com/facebook/react/uimanager/ReactOverflowView {
|
|
4253
3978
|
public abstract fun getOverflow ()Ljava/lang/String;
|
|
4254
3979
|
}
|
|
@@ -4275,11 +4000,6 @@ public abstract interface class com/facebook/react/uimanager/ReactRoot {
|
|
|
4275
4000
|
public abstract fun setShouldLogContentAppeared (Z)V
|
|
4276
4001
|
}
|
|
4277
4002
|
|
|
4278
|
-
public final class com/facebook/react/uimanager/ReactRootViewTagGenerator {
|
|
4279
|
-
public static final field INSTANCE Lcom/facebook/react/uimanager/ReactRootViewTagGenerator;
|
|
4280
|
-
public static final fun getNextRootViewTag ()I
|
|
4281
|
-
}
|
|
4282
|
-
|
|
4283
4003
|
public abstract interface class com/facebook/react/uimanager/ReactShadowNode {
|
|
4284
4004
|
public abstract fun addChildAt (Lcom/facebook/react/uimanager/ReactShadowNode;I)V
|
|
4285
4005
|
public abstract fun addNativeChildAt (Lcom/facebook/react/uimanager/ReactShadowNode;I)V
|
|
@@ -4568,19 +4288,19 @@ public final class com/facebook/react/uimanager/ReactStage$Companion {
|
|
|
4568
4288
|
public static final field SURFACE_DID_STOP I
|
|
4569
4289
|
}
|
|
4570
4290
|
|
|
4571
|
-
public class com/facebook/react/uimanager/ReactStylesDiffMap {
|
|
4291
|
+
public final class com/facebook/react/uimanager/ReactStylesDiffMap {
|
|
4572
4292
|
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
4573
|
-
public fun getArray (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
4574
|
-
public fun getBoolean (Ljava/lang/String;Z)Z
|
|
4575
|
-
public fun getDouble (Ljava/lang/String;D)D
|
|
4576
|
-
public fun getDynamic (Ljava/lang/String;)Lcom/facebook/react/bridge/Dynamic;
|
|
4577
|
-
public fun getFloat (Ljava/lang/String;F)F
|
|
4578
|
-
public fun getInt (Ljava/lang/String;I)I
|
|
4579
|
-
public fun getMap (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableMap;
|
|
4580
|
-
public fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
4581
|
-
public fun hasKey (Ljava/lang/String;)Z
|
|
4582
|
-
public fun isNull (Ljava/lang/String;)Z
|
|
4583
|
-
public fun toMap ()Ljava/util/Map;
|
|
4293
|
+
public final fun getArray (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableArray;
|
|
4294
|
+
public final fun getBoolean (Ljava/lang/String;Z)Z
|
|
4295
|
+
public final fun getDouble (Ljava/lang/String;D)D
|
|
4296
|
+
public final fun getDynamic (Ljava/lang/String;)Lcom/facebook/react/bridge/Dynamic;
|
|
4297
|
+
public final fun getFloat (Ljava/lang/String;F)F
|
|
4298
|
+
public final fun getInt (Ljava/lang/String;I)I
|
|
4299
|
+
public final fun getMap (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableMap;
|
|
4300
|
+
public final fun getString (Ljava/lang/String;)Ljava/lang/String;
|
|
4301
|
+
public final fun hasKey (Ljava/lang/String;)Z
|
|
4302
|
+
public final fun isNull (Ljava/lang/String;)Z
|
|
4303
|
+
public final fun toMap ()Ljava/util/Map;
|
|
4584
4304
|
public fun toString ()Ljava/lang/String;
|
|
4585
4305
|
}
|
|
4586
4306
|
|
|
@@ -4677,26 +4397,26 @@ public class com/facebook/react/uimanager/ThemedReactContext : com/facebook/reac
|
|
|
4677
4397
|
public fun removeLifecycleEventListener (Lcom/facebook/react/bridge/LifecycleEventListener;)V
|
|
4678
4398
|
}
|
|
4679
4399
|
|
|
4680
|
-
public class com/facebook/react/uimanager/TouchTargetHelper {
|
|
4681
|
-
public
|
|
4682
|
-
public static fun findTargetPathAndCoordinatesForTouch (FFLandroid/view/ViewGroup;[F)Ljava/util/List;
|
|
4683
|
-
public static fun findTargetTagAndCoordinatesForTouch (FFLandroid/view/ViewGroup;[F[I)I
|
|
4684
|
-
public static fun findTargetTagForTouch (FFLandroid/view/ViewGroup;)I
|
|
4685
|
-
public static fun findTargetTagForTouch (FFLandroid/view/ViewGroup;[I)I
|
|
4400
|
+
public final class com/facebook/react/uimanager/TouchTargetHelper {
|
|
4401
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/TouchTargetHelper;
|
|
4402
|
+
public static final fun findTargetPathAndCoordinatesForTouch (FFLandroid/view/ViewGroup;[F)Ljava/util/List;
|
|
4403
|
+
public static final fun findTargetTagAndCoordinatesForTouch (FFLandroid/view/ViewGroup;[F[I)I
|
|
4404
|
+
public static final fun findTargetTagForTouch (FFLandroid/view/ViewGroup;)I
|
|
4405
|
+
public static final fun findTargetTagForTouch (FFLandroid/view/ViewGroup;[I)I
|
|
4686
4406
|
}
|
|
4687
4407
|
|
|
4688
|
-
public class com/facebook/react/uimanager/TouchTargetHelper$ViewTarget {
|
|
4408
|
+
public final class com/facebook/react/uimanager/TouchTargetHelper$ViewTarget {
|
|
4689
4409
|
public fun equals (Ljava/lang/Object;)Z
|
|
4690
|
-
public fun getView ()Landroid/view/View;
|
|
4691
|
-
public fun getViewId ()I
|
|
4410
|
+
public final fun getView ()Landroid/view/View;
|
|
4411
|
+
public final fun getViewId ()I
|
|
4692
4412
|
public fun hashCode ()I
|
|
4693
4413
|
}
|
|
4694
4414
|
|
|
4695
|
-
public class com/facebook/react/uimanager/TransformHelper {
|
|
4696
|
-
public
|
|
4697
|
-
public static fun processTransform (Lcom/facebook/react/bridge/ReadableArray;[D)V
|
|
4698
|
-
public static fun processTransform (Lcom/facebook/react/bridge/ReadableArray;[DFFLcom/facebook/react/bridge/ReadableArray;)V
|
|
4699
|
-
public static fun processTransform (Lcom/facebook/react/bridge/ReadableArray;[DFFLcom/facebook/react/bridge/ReadableArray;Z)V
|
|
4415
|
+
public final class com/facebook/react/uimanager/TransformHelper {
|
|
4416
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/TransformHelper;
|
|
4417
|
+
public static final fun processTransform (Lcom/facebook/react/bridge/ReadableArray;[D)V
|
|
4418
|
+
public static final fun processTransform (Lcom/facebook/react/bridge/ReadableArray;[DFFLcom/facebook/react/bridge/ReadableArray;)V
|
|
4419
|
+
public static final fun processTransform (Lcom/facebook/react/bridge/ReadableArray;[DFFLcom/facebook/react/bridge/ReadableArray;Z)V
|
|
4700
4420
|
}
|
|
4701
4421
|
|
|
4702
4422
|
public abstract interface class com/facebook/react/uimanager/UIBlock {
|
|
@@ -4856,6 +4576,8 @@ public abstract interface class com/facebook/react/uimanager/UIManagerModule$Cus
|
|
|
4856
4576
|
|
|
4857
4577
|
public class com/facebook/react/uimanager/UIManagerModuleConstantsHelper {
|
|
4858
4578
|
public fun <init> ()V
|
|
4579
|
+
public static fun createConstants (Ljava/util/List;Ljava/util/Map;Ljava/util/Map;)Ljava/util/Map;
|
|
4580
|
+
public static fun createConstantsForViewManager (Lcom/facebook/react/uimanager/ViewManager;Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;)Ljava/util/Map;
|
|
4859
4581
|
public static fun getDefaultExportableEventTypes ()Ljava/util/Map;
|
|
4860
4582
|
}
|
|
4861
4583
|
|
|
@@ -4901,15 +4623,6 @@ public abstract interface class com/facebook/react/uimanager/UIViewOperationQueu
|
|
|
4901
4623
|
public abstract fun execute ()V
|
|
4902
4624
|
}
|
|
4903
4625
|
|
|
4904
|
-
public class com/facebook/react/uimanager/ViewAtIndex {
|
|
4905
|
-
public static field COMPARATOR Ljava/util/Comparator;
|
|
4906
|
-
public final field mIndex I
|
|
4907
|
-
public final field mTag I
|
|
4908
|
-
public fun <init> (II)V
|
|
4909
|
-
public fun equals (Ljava/lang/Object;)Z
|
|
4910
|
-
public fun toString ()Ljava/lang/String;
|
|
4911
|
-
}
|
|
4912
|
-
|
|
4913
4626
|
public final class com/facebook/react/uimanager/ViewDefaults {
|
|
4914
4627
|
public static final field FONT_SIZE_SP F
|
|
4915
4628
|
public static final field INSTANCE Lcom/facebook/react/uimanager/ViewDefaults;
|
|
@@ -4917,21 +4630,23 @@ public final class com/facebook/react/uimanager/ViewDefaults {
|
|
|
4917
4630
|
public static final field NUMBER_OF_LINES I
|
|
4918
4631
|
}
|
|
4919
4632
|
|
|
4920
|
-
public class com/facebook/react/uimanager/ViewGroupDrawingOrderHelper {
|
|
4633
|
+
public final class com/facebook/react/uimanager/ViewGroupDrawingOrderHelper {
|
|
4921
4634
|
public fun <init> (Landroid/view/ViewGroup;)V
|
|
4922
|
-
public fun getChildDrawingOrder (II)I
|
|
4923
|
-
public fun handleAddView (Landroid/view/View;)V
|
|
4924
|
-
public fun handleRemoveView (Landroid/view/View;)V
|
|
4925
|
-
public fun shouldEnableCustomDrawingOrder ()Z
|
|
4926
|
-
public fun update ()V
|
|
4635
|
+
public final fun getChildDrawingOrder (II)I
|
|
4636
|
+
public final fun handleAddView (Landroid/view/View;)V
|
|
4637
|
+
public final fun handleRemoveView (Landroid/view/View;)V
|
|
4638
|
+
public final fun shouldEnableCustomDrawingOrder ()Z
|
|
4639
|
+
public final fun update ()V
|
|
4927
4640
|
}
|
|
4928
4641
|
|
|
4929
4642
|
public abstract class com/facebook/react/uimanager/ViewGroupManager : com/facebook/react/uimanager/BaseViewManager, com/facebook/react/uimanager/IViewGroupManager {
|
|
4643
|
+
public static final field Companion Lcom/facebook/react/uimanager/ViewGroupManager$Companion;
|
|
4930
4644
|
public fun <init> ()V
|
|
4931
4645
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
4646
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
4932
4647
|
public synthetic fun addView (Landroid/view/View;Landroid/view/View;I)V
|
|
4933
4648
|
public fun addView (Landroid/view/ViewGroup;Landroid/view/View;I)V
|
|
4934
|
-
public fun addViews (Landroid/view/ViewGroup;Ljava/util/List;)V
|
|
4649
|
+
public final fun addViews (Landroid/view/ViewGroup;Ljava/util/List;)V
|
|
4935
4650
|
public fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/LayoutShadowNode;
|
|
4936
4651
|
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
4937
4652
|
public synthetic fun getChildAt (Landroid/view/View;I)Landroid/view/View;
|
|
@@ -4939,16 +4654,21 @@ public abstract class com/facebook/react/uimanager/ViewGroupManager : com/facebo
|
|
|
4939
4654
|
public synthetic fun getChildCount (Landroid/view/View;)I
|
|
4940
4655
|
public fun getChildCount (Landroid/view/ViewGroup;)I
|
|
4941
4656
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
4942
|
-
public static fun getViewZIndex (Landroid/view/View;)Ljava/lang/Integer;
|
|
4657
|
+
public static final fun getViewZIndex (Landroid/view/View;)Ljava/lang/Integer;
|
|
4943
4658
|
public fun needsCustomLayoutForChildren ()Z
|
|
4944
4659
|
public fun removeView (Landroid/view/ViewGroup;Landroid/view/View;)V
|
|
4945
4660
|
public synthetic fun removeViewAt (Landroid/view/View;I)V
|
|
4946
4661
|
public fun removeViewAt (Landroid/view/ViewGroup;I)V
|
|
4947
|
-
public static fun setViewZIndex (Landroid/view/View;I)V
|
|
4662
|
+
public static final fun setViewZIndex (Landroid/view/View;I)V
|
|
4948
4663
|
public synthetic fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
4949
4664
|
public fun updateExtraData (Landroid/view/ViewGroup;Ljava/lang/Object;)V
|
|
4950
4665
|
}
|
|
4951
4666
|
|
|
4667
|
+
public final class com/facebook/react/uimanager/ViewGroupManager$Companion {
|
|
4668
|
+
public final fun getViewZIndex (Landroid/view/View;)Ljava/lang/Integer;
|
|
4669
|
+
public final fun setViewZIndex (Landroid/view/View;I)V
|
|
4670
|
+
}
|
|
4671
|
+
|
|
4952
4672
|
public abstract class com/facebook/react/uimanager/ViewManager : com/facebook/react/bridge/BaseJavaModule {
|
|
4953
4673
|
public fun <init> ()V
|
|
4954
4674
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
@@ -5038,6 +4758,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5038
4758
|
public static final field ACCESSIBILITY_LABEL Ljava/lang/String;
|
|
5039
4759
|
public static final field ACCESSIBILITY_LABELLED_BY Ljava/lang/String;
|
|
5040
4760
|
public static final field ACCESSIBILITY_LIVE_REGION Ljava/lang/String;
|
|
4761
|
+
public static final field ACCESSIBILITY_ORDER Ljava/lang/String;
|
|
5041
4762
|
public static final field ACCESSIBILITY_ROLE Ljava/lang/String;
|
|
5042
4763
|
public static final field ACCESSIBILITY_STATE Ljava/lang/String;
|
|
5043
4764
|
public static final field ACCESSIBILITY_VALUE Ljava/lang/String;
|
|
@@ -5165,6 +4886,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5165
4886
|
public static final field ROW_GAP Ljava/lang/String;
|
|
5166
4887
|
public static final field SCALE_X Ljava/lang/String;
|
|
5167
4888
|
public static final field SCALE_Y Ljava/lang/String;
|
|
4889
|
+
public static final field SCREEN_READER_FOCUSABLE Ljava/lang/String;
|
|
5168
4890
|
public static final field SCROLL Ljava/lang/String;
|
|
5169
4891
|
public static final field SHADOW_COLOR Ljava/lang/String;
|
|
5170
4892
|
public static final field START Ljava/lang/String;
|
|
@@ -5186,6 +4908,7 @@ public final class com/facebook/react/uimanager/ViewProps {
|
|
|
5186
4908
|
}
|
|
5187
4909
|
|
|
5188
4910
|
public abstract interface annotation class com/facebook/react/uimanager/annotations/ReactProp : java/lang/annotation/Annotation {
|
|
4911
|
+
public static final field Companion Lcom/facebook/react/uimanager/annotations/ReactProp$Companion;
|
|
5189
4912
|
public static final field USE_DEFAULT_TYPE Ljava/lang/String;
|
|
5190
4913
|
public abstract fun customType ()Ljava/lang/String;
|
|
5191
4914
|
public abstract fun defaultBoolean ()Z
|
|
@@ -5196,7 +4919,12 @@ public abstract interface annotation class com/facebook/react/uimanager/annotati
|
|
|
5196
4919
|
public abstract fun name ()Ljava/lang/String;
|
|
5197
4920
|
}
|
|
5198
4921
|
|
|
4922
|
+
public final class com/facebook/react/uimanager/annotations/ReactProp$Companion {
|
|
4923
|
+
public static final field USE_DEFAULT_TYPE Ljava/lang/String;
|
|
4924
|
+
}
|
|
4925
|
+
|
|
5199
4926
|
public abstract interface annotation class com/facebook/react/uimanager/annotations/ReactPropGroup : java/lang/annotation/Annotation {
|
|
4927
|
+
public static final field Companion Lcom/facebook/react/uimanager/annotations/ReactPropGroup$Companion;
|
|
5200
4928
|
public static final field USE_DEFAULT_TYPE Ljava/lang/String;
|
|
5201
4929
|
public abstract fun customType ()Ljava/lang/String;
|
|
5202
4930
|
public abstract fun defaultDouble ()D
|
|
@@ -5206,6 +4934,10 @@ public abstract interface annotation class com/facebook/react/uimanager/annotati
|
|
|
5206
4934
|
public abstract fun names ()[Ljava/lang/String;
|
|
5207
4935
|
}
|
|
5208
4936
|
|
|
4937
|
+
public final class com/facebook/react/uimanager/annotations/ReactPropGroup$Companion {
|
|
4938
|
+
public static final field USE_DEFAULT_TYPE Ljava/lang/String;
|
|
4939
|
+
}
|
|
4940
|
+
|
|
5209
4941
|
public abstract interface annotation class com/facebook/react/uimanager/annotations/ReactPropertyHolder : java/lang/annotation/Annotation {
|
|
5210
4942
|
}
|
|
5211
4943
|
|
|
@@ -5213,11 +4945,13 @@ public abstract interface annotation class com/facebook/react/uimanager/common/U
|
|
|
5213
4945
|
public static final field Companion Lcom/facebook/react/uimanager/common/UIManagerType$Companion;
|
|
5214
4946
|
public static final field DEFAULT I
|
|
5215
4947
|
public static final field FABRIC I
|
|
4948
|
+
public static final field LEGACY I
|
|
5216
4949
|
}
|
|
5217
4950
|
|
|
5218
4951
|
public final class com/facebook/react/uimanager/common/UIManagerType$Companion {
|
|
5219
4952
|
public static final field DEFAULT I
|
|
5220
4953
|
public static final field FABRIC I
|
|
4954
|
+
public static final field LEGACY I
|
|
5221
4955
|
}
|
|
5222
4956
|
|
|
5223
4957
|
public final class com/facebook/react/uimanager/common/ViewUtil {
|
|
@@ -5247,6 +4981,7 @@ public abstract class com/facebook/react/uimanager/events/Event {
|
|
|
5247
4981
|
public fun coalesce (Lcom/facebook/react/uimanager/events/Event;)Lcom/facebook/react/uimanager/events/Event;
|
|
5248
4982
|
public fun dispatch (Lcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5249
4983
|
public fun dispatchModern (Lcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
4984
|
+
public final fun dispose ()V
|
|
5250
4985
|
protected fun experimental_isSynchronous ()Z
|
|
5251
4986
|
public fun getCoalescingKey ()S
|
|
5252
4987
|
public fun getEventAnimationDriverMatchSpec ()Lcom/facebook/react/uimanager/events/Event$EventAnimationDriverMatchSpec;
|
|
@@ -5255,11 +4990,13 @@ public abstract class com/facebook/react/uimanager/events/Event {
|
|
|
5255
4990
|
public abstract fun getEventName ()Ljava/lang/String;
|
|
5256
4991
|
public final fun getSurfaceId ()I
|
|
5257
4992
|
public final fun getTimestampMs ()J
|
|
5258
|
-
public fun getUniqueID ()I
|
|
4993
|
+
public final fun getUniqueID ()I
|
|
5259
4994
|
public final fun getViewTag ()I
|
|
5260
|
-
protected fun init (I)V
|
|
5261
|
-
protected fun init (II)V
|
|
5262
|
-
protected fun init (IIJ)V
|
|
4995
|
+
protected final fun init (I)V
|
|
4996
|
+
protected final fun init (II)V
|
|
4997
|
+
protected final fun init (IIJ)V
|
|
4998
|
+
public final fun internal_getEventNameCompat ()Ljava/lang/String;
|
|
4999
|
+
public final fun isInitialized ()Z
|
|
5263
5000
|
public fun onDispose ()V
|
|
5264
5001
|
}
|
|
5265
5002
|
|
|
@@ -5267,34 +5004,14 @@ public abstract interface class com/facebook/react/uimanager/events/Event$EventA
|
|
|
5267
5004
|
public abstract fun match (ILjava/lang/String;)Z
|
|
5268
5005
|
}
|
|
5269
5006
|
|
|
5270
|
-
public abstract interface annotation class com/facebook/react/uimanager/events/EventCategoryDef : java/lang/annotation/Annotation {
|
|
5271
|
-
public static final field CONTINUOUS I
|
|
5272
|
-
public static final field CONTINUOUS_END I
|
|
5273
|
-
public static final field CONTINUOUS_START I
|
|
5274
|
-
public static final field Companion Lcom/facebook/react/uimanager/events/EventCategoryDef$Companion;
|
|
5275
|
-
public static final field DISCRETE I
|
|
5276
|
-
public static final field UNSPECIFIED I
|
|
5277
|
-
}
|
|
5278
|
-
|
|
5279
|
-
public final class com/facebook/react/uimanager/events/EventCategoryDef$Companion {
|
|
5280
|
-
public static final field CONTINUOUS I
|
|
5281
|
-
public static final field CONTINUOUS_END I
|
|
5282
|
-
public static final field CONTINUOUS_START I
|
|
5283
|
-
public static final field DISCRETE I
|
|
5284
|
-
public static final field UNSPECIFIED I
|
|
5285
|
-
}
|
|
5286
|
-
|
|
5287
5007
|
public abstract interface class com/facebook/react/uimanager/events/EventDispatcher {
|
|
5288
5008
|
public abstract fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5289
5009
|
public abstract fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5290
5010
|
public abstract fun dispatchAllEvents ()V
|
|
5291
5011
|
public abstract fun dispatchEvent (Lcom/facebook/react/uimanager/events/Event;)V
|
|
5292
5012
|
public abstract fun onCatalystInstanceDestroyed ()V
|
|
5293
|
-
public abstract fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5294
|
-
public abstract fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
5295
5013
|
public abstract fun removeBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5296
5014
|
public abstract fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5297
|
-
public abstract fun unregisterEventEmitter (I)V
|
|
5298
5015
|
}
|
|
5299
5016
|
|
|
5300
5017
|
public class com/facebook/react/uimanager/events/EventDispatcherImpl : com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/uimanager/events/EventDispatcher {
|
|
@@ -5307,38 +5024,14 @@ public class com/facebook/react/uimanager/events/EventDispatcherImpl : com/faceb
|
|
|
5307
5024
|
public fun onHostDestroy ()V
|
|
5308
5025
|
public fun onHostPause ()V
|
|
5309
5026
|
public fun onHostResume ()V
|
|
5310
|
-
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5311
|
-
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
5312
5027
|
public fun removeBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5313
5028
|
public fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5314
|
-
public fun unregisterEventEmitter (I)V
|
|
5315
5029
|
}
|
|
5316
5030
|
|
|
5317
5031
|
public abstract interface class com/facebook/react/uimanager/events/EventDispatcherListener {
|
|
5318
5032
|
public abstract fun onEventDispatch (Lcom/facebook/react/uimanager/events/Event;)V
|
|
5319
5033
|
}
|
|
5320
5034
|
|
|
5321
|
-
public abstract interface class com/facebook/react/uimanager/events/EventDispatcherProvider {
|
|
5322
|
-
public abstract fun getEventDispatcher ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5323
|
-
}
|
|
5324
|
-
|
|
5325
|
-
public class com/facebook/react/uimanager/events/FabricEventDispatcher : com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/uimanager/events/EventDispatcher {
|
|
5326
|
-
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
5327
|
-
public fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5328
|
-
public fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5329
|
-
public fun dispatchAllEvents ()V
|
|
5330
|
-
public fun dispatchEvent (Lcom/facebook/react/uimanager/events/Event;)V
|
|
5331
|
-
public fun onCatalystInstanceDestroyed ()V
|
|
5332
|
-
public fun onHostDestroy ()V
|
|
5333
|
-
public fun onHostPause ()V
|
|
5334
|
-
public fun onHostResume ()V
|
|
5335
|
-
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5336
|
-
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
5337
|
-
public fun removeBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5338
|
-
public fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5339
|
-
public fun unregisterEventEmitter (I)V
|
|
5340
|
-
}
|
|
5341
|
-
|
|
5342
5035
|
public final class com/facebook/react/uimanager/events/NativeGestureUtil {
|
|
5343
5036
|
public static final field INSTANCE Lcom/facebook/react/uimanager/events/NativeGestureUtil;
|
|
5344
5037
|
public static final fun notifyNativeGestureEnded (Landroid/view/View;Landroid/view/MotionEvent;)V
|
|
@@ -5371,56 +5064,6 @@ public class com/facebook/react/uimanager/events/PointerEvent$PointerEventState
|
|
|
5371
5064
|
public fun supportsHover (I)Z
|
|
5372
5065
|
}
|
|
5373
5066
|
|
|
5374
|
-
public final class com/facebook/react/uimanager/events/PointerEventHelper {
|
|
5375
|
-
public static final field CLICK Ljava/lang/String;
|
|
5376
|
-
public static final field INSTANCE Lcom/facebook/react/uimanager/events/PointerEventHelper;
|
|
5377
|
-
public static final field POINTER_CANCEL Ljava/lang/String;
|
|
5378
|
-
public static final field POINTER_DOWN Ljava/lang/String;
|
|
5379
|
-
public static final field POINTER_ENTER Ljava/lang/String;
|
|
5380
|
-
public static final field POINTER_LEAVE Ljava/lang/String;
|
|
5381
|
-
public static final field POINTER_MOVE Ljava/lang/String;
|
|
5382
|
-
public static final field POINTER_OUT Ljava/lang/String;
|
|
5383
|
-
public static final field POINTER_OVER Ljava/lang/String;
|
|
5384
|
-
public static final field POINTER_TYPE_MOUSE Ljava/lang/String;
|
|
5385
|
-
public static final field POINTER_TYPE_PEN Ljava/lang/String;
|
|
5386
|
-
public static final field POINTER_TYPE_TOUCH Ljava/lang/String;
|
|
5387
|
-
public static final field POINTER_TYPE_UNKNOWN Ljava/lang/String;
|
|
5388
|
-
public static final field POINTER_UP Ljava/lang/String;
|
|
5389
|
-
public static final fun getButtonChange (Ljava/lang/String;II)I
|
|
5390
|
-
public static final fun getButtons (Ljava/lang/String;Ljava/lang/String;I)I
|
|
5391
|
-
public static final fun getEventCategory (Ljava/lang/String;)I
|
|
5392
|
-
public static final fun getPressure (ILjava/lang/String;)D
|
|
5393
|
-
public static final fun getW3CPointerType (I)Ljava/lang/String;
|
|
5394
|
-
public static final fun isBubblingEvent (Ljava/lang/String;)Z
|
|
5395
|
-
public final fun isExitEvent (Ljava/lang/String;)Z
|
|
5396
|
-
public static final fun isListening (Landroid/view/View;Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;)Z
|
|
5397
|
-
public final fun supportsHover (Landroid/view/MotionEvent;)Z
|
|
5398
|
-
}
|
|
5399
|
-
|
|
5400
|
-
public final class com/facebook/react/uimanager/events/PointerEventHelper$EVENT : java/lang/Enum {
|
|
5401
|
-
public static final field CANCEL Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5402
|
-
public static final field CANCEL_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5403
|
-
public static final field CLICK Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5404
|
-
public static final field CLICK_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5405
|
-
public static final field DOWN Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5406
|
-
public static final field DOWN_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5407
|
-
public static final field ENTER Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5408
|
-
public static final field ENTER_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5409
|
-
public static final field LEAVE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5410
|
-
public static final field LEAVE_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5411
|
-
public static final field MOVE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5412
|
-
public static final field MOVE_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5413
|
-
public static final field OUT Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5414
|
-
public static final field OUT_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5415
|
-
public static final field OVER Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5416
|
-
public static final field OVER_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5417
|
-
public static final field UP Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5418
|
-
public static final field UP_CAPTURE Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5419
|
-
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
5420
|
-
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5421
|
-
public static fun values ()[Lcom/facebook/react/uimanager/events/PointerEventHelper$EVENT;
|
|
5422
|
-
}
|
|
5423
|
-
|
|
5424
5067
|
public abstract interface class com/facebook/react/uimanager/events/RCTEventEmitter : com/facebook/react/bridge/JavaScriptModule {
|
|
5425
5068
|
public abstract fun receiveEvent (ILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
5426
5069
|
public abstract fun receiveTouches (Ljava/lang/String;Lcom/facebook/react/bridge/WritableArray;Lcom/facebook/react/bridge/WritableArray;)V
|
|
@@ -5429,7 +5072,6 @@ public abstract interface class com/facebook/react/uimanager/events/RCTEventEmit
|
|
|
5429
5072
|
public abstract interface class com/facebook/react/uimanager/events/RCTModernEventEmitter : com/facebook/react/uimanager/events/RCTEventEmitter {
|
|
5430
5073
|
public abstract fun receiveEvent (IILjava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
5431
5074
|
public abstract fun receiveEvent (IILjava/lang/String;ZILcom/facebook/react/bridge/WritableMap;I)V
|
|
5432
|
-
public abstract fun receiveTouches (Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5433
5075
|
}
|
|
5434
5076
|
|
|
5435
5077
|
public final class com/facebook/react/uimanager/events/TouchEvent : com/facebook/react/uimanager/events/Event {
|
|
@@ -5481,18 +5123,11 @@ public final class com/facebook/react/uimanager/events/TouchEventType$Companion
|
|
|
5481
5123
|
public final fun getJSEventName (Lcom/facebook/react/uimanager/events/TouchEventType;)Ljava/lang/String;
|
|
5482
5124
|
}
|
|
5483
5125
|
|
|
5484
|
-
public final class com/facebook/react/uimanager/events/TouchesHelper {
|
|
5485
|
-
public static final field INSTANCE Lcom/facebook/react/uimanager/events/TouchesHelper;
|
|
5486
|
-
public static final field TARGET_KEY Ljava/lang/String;
|
|
5487
|
-
public static final fun sendTouchEvent (Lcom/facebook/react/uimanager/events/RCTModernEventEmitter;Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5488
|
-
public static final fun sendTouchesLegacy (Lcom/facebook/react/uimanager/events/RCTEventEmitter;Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5489
|
-
}
|
|
5490
|
-
|
|
5491
5126
|
public class com/facebook/react/uimanager/layoutanimation/LayoutAnimationController {
|
|
5492
5127
|
public fun <init> ()V
|
|
5493
5128
|
public fun applyLayoutUpdate (Landroid/view/View;IIII)V
|
|
5494
5129
|
public fun deleteView (Landroid/view/View;Lcom/facebook/react/uimanager/layoutanimation/LayoutAnimationListener;)V
|
|
5495
|
-
public fun initializeFromConfig (Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Callback;)V
|
|
5130
|
+
public final fun initializeFromConfig (Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Callback;)V
|
|
5496
5131
|
public fun reset ()V
|
|
5497
5132
|
public fun shouldAnimateLayout (Landroid/view/View;)Z
|
|
5498
5133
|
}
|
|
@@ -5502,10 +5137,16 @@ public abstract interface class com/facebook/react/uimanager/layoutanimation/Lay
|
|
|
5502
5137
|
}
|
|
5503
5138
|
|
|
5504
5139
|
public final class com/facebook/react/uimanager/style/BackgroundImageLayer {
|
|
5505
|
-
public
|
|
5140
|
+
public static final field Companion Lcom/facebook/react/uimanager/style/BackgroundImageLayer$Companion;
|
|
5141
|
+
public fun <init> ()V
|
|
5142
|
+
public synthetic fun <init> (Lcom/facebook/react/uimanager/style/Gradient;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
5506
5143
|
public final fun getShader (Landroid/graphics/Rect;)Landroid/graphics/Shader;
|
|
5507
5144
|
}
|
|
5508
5145
|
|
|
5146
|
+
public final class com/facebook/react/uimanager/style/BackgroundImageLayer$Companion {
|
|
5147
|
+
public final fun parse (Lcom/facebook/react/bridge/ReadableMap;Landroid/content/Context;)Lcom/facebook/react/uimanager/style/BackgroundImageLayer;
|
|
5148
|
+
}
|
|
5149
|
+
|
|
5509
5150
|
public final class com/facebook/react/uimanager/style/BorderRadiusProp : java/lang/Enum {
|
|
5510
5151
|
public static final field BORDER_BOTTOM_END_RADIUS Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
5511
5152
|
public static final field BORDER_BOTTOM_LEFT_RADIUS Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
@@ -5603,6 +5244,7 @@ public final class com/facebook/react/uimanager/style/CornerRadii {
|
|
|
5603
5244
|
public fun <init> ()V
|
|
5604
5245
|
public fun <init> (FF)V
|
|
5605
5246
|
public synthetic fun <init> (FFILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
5247
|
+
public fun <init> (Lcom/facebook/react/uimanager/LengthPercentage;FF)V
|
|
5606
5248
|
public final fun component1 ()F
|
|
5607
5249
|
public final fun component2 ()F
|
|
5608
5250
|
public final fun copy (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
@@ -5676,15 +5318,6 @@ public abstract interface class com/facebook/react/uimanager/util/ReactFindViewU
|
|
|
5676
5318
|
public abstract fun onViewFound (Landroid/view/View;)V
|
|
5677
5319
|
}
|
|
5678
5320
|
|
|
5679
|
-
public final class com/facebook/react/util/JSStackTrace {
|
|
5680
|
-
public static final field COLUMN_KEY Ljava/lang/String;
|
|
5681
|
-
public static final field FILE_KEY Ljava/lang/String;
|
|
5682
|
-
public static final field INSTANCE Lcom/facebook/react/util/JSStackTrace;
|
|
5683
|
-
public static final field LINE_NUMBER_KEY Ljava/lang/String;
|
|
5684
|
-
public static final field METHOD_NAME_KEY Ljava/lang/String;
|
|
5685
|
-
public static final fun format (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
|
5686
|
-
}
|
|
5687
|
-
|
|
5688
5321
|
public final class com/facebook/react/util/RNLog {
|
|
5689
5322
|
public static final field ADVICE I
|
|
5690
5323
|
public static final field ERROR I
|
|
@@ -5895,52 +5528,6 @@ public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager : co
|
|
|
5895
5528
|
public final class com/facebook/react/views/drawer/ReactDrawerLayoutManager$Companion {
|
|
5896
5529
|
}
|
|
5897
5530
|
|
|
5898
|
-
public final class com/facebook/react/views/drawer/events/DrawerClosedEvent : com/facebook/react/uimanager/events/Event {
|
|
5899
|
-
public static final field Companion Lcom/facebook/react/views/drawer/events/DrawerClosedEvent$Companion;
|
|
5900
|
-
public static final field EVENT_NAME Ljava/lang/String;
|
|
5901
|
-
public fun <init> (I)V
|
|
5902
|
-
public fun <init> (II)V
|
|
5903
|
-
public fun getEventName ()Ljava/lang/String;
|
|
5904
|
-
}
|
|
5905
|
-
|
|
5906
|
-
public final class com/facebook/react/views/drawer/events/DrawerClosedEvent$Companion {
|
|
5907
|
-
}
|
|
5908
|
-
|
|
5909
|
-
public final class com/facebook/react/views/drawer/events/DrawerOpenedEvent : com/facebook/react/uimanager/events/Event {
|
|
5910
|
-
public static final field Companion Lcom/facebook/react/views/drawer/events/DrawerOpenedEvent$Companion;
|
|
5911
|
-
public static final field EVENT_NAME Ljava/lang/String;
|
|
5912
|
-
public fun <init> (I)V
|
|
5913
|
-
public fun <init> (II)V
|
|
5914
|
-
public fun getEventName ()Ljava/lang/String;
|
|
5915
|
-
}
|
|
5916
|
-
|
|
5917
|
-
public final class com/facebook/react/views/drawer/events/DrawerOpenedEvent$Companion {
|
|
5918
|
-
}
|
|
5919
|
-
|
|
5920
|
-
public final class com/facebook/react/views/drawer/events/DrawerSlideEvent : com/facebook/react/uimanager/events/Event {
|
|
5921
|
-
public static final field Companion Lcom/facebook/react/views/drawer/events/DrawerSlideEvent$Companion;
|
|
5922
|
-
public static final field EVENT_NAME Ljava/lang/String;
|
|
5923
|
-
public fun <init> (IF)V
|
|
5924
|
-
public fun <init> (IIF)V
|
|
5925
|
-
public fun getEventName ()Ljava/lang/String;
|
|
5926
|
-
public final fun getOffset ()F
|
|
5927
|
-
}
|
|
5928
|
-
|
|
5929
|
-
public final class com/facebook/react/views/drawer/events/DrawerSlideEvent$Companion {
|
|
5930
|
-
}
|
|
5931
|
-
|
|
5932
|
-
public final class com/facebook/react/views/drawer/events/DrawerStateChangedEvent : com/facebook/react/uimanager/events/Event {
|
|
5933
|
-
public static final field Companion Lcom/facebook/react/views/drawer/events/DrawerStateChangedEvent$Companion;
|
|
5934
|
-
public static final field EVENT_NAME Ljava/lang/String;
|
|
5935
|
-
public fun <init> (II)V
|
|
5936
|
-
public fun <init> (III)V
|
|
5937
|
-
public final fun getDrawerState ()I
|
|
5938
|
-
public fun getEventName ()Ljava/lang/String;
|
|
5939
|
-
}
|
|
5940
|
-
|
|
5941
|
-
public final class com/facebook/react/views/drawer/events/DrawerStateChangedEvent$Companion {
|
|
5942
|
-
}
|
|
5943
|
-
|
|
5944
5531
|
public abstract interface class com/facebook/react/views/image/GlobalImageLoadListener {
|
|
5945
5532
|
public abstract fun onLoadAttempt (Landroid/net/Uri;)V
|
|
5946
5533
|
}
|
|
@@ -6095,71 +5682,14 @@ public final class com/facebook/react/views/imagehelper/ImageSource$Companion {
|
|
|
6095
5682
|
public final fun getTransparentBitmapImageSource (Landroid/content/Context;)Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
6096
5683
|
}
|
|
6097
5684
|
|
|
6098
|
-
public final class com/facebook/react/views/imagehelper/MultiSourceHelper {
|
|
6099
|
-
public static final field INSTANCE Lcom/facebook/react/views/imagehelper/MultiSourceHelper;
|
|
6100
|
-
public static final fun getBestSourceForSize (IILjava/util/List;)Lcom/facebook/react/views/imagehelper/MultiSourceHelper$MultiSourceResult;
|
|
6101
|
-
public static final fun getBestSourceForSize (IILjava/util/List;D)Lcom/facebook/react/views/imagehelper/MultiSourceHelper$MultiSourceResult;
|
|
6102
|
-
}
|
|
6103
|
-
|
|
6104
|
-
public final class com/facebook/react/views/imagehelper/MultiSourceHelper$MultiSourceResult {
|
|
6105
|
-
public final field bestResult Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
6106
|
-
public final field bestResultInCache Lcom/facebook/react/views/imagehelper/ImageSource;
|
|
6107
|
-
public fun <init> (Lcom/facebook/react/views/imagehelper/ImageSource;Lcom/facebook/react/views/imagehelper/ImageSource;)V
|
|
6108
|
-
}
|
|
6109
|
-
|
|
6110
5685
|
public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper {
|
|
6111
|
-
public static final field
|
|
6112
|
-
public final fun clear ()V
|
|
6113
|
-
public static final fun getInstance ()Lcom/facebook/react/views/imagehelper/ResourceDrawableIdHelper;
|
|
6114
|
-
public final fun getResourceDrawable (Landroid/content/Context;Ljava/lang/String;)Landroid/graphics/drawable/Drawable;
|
|
6115
|
-
public final fun getResourceDrawableId (Landroid/content/Context;Ljava/lang/String;)I
|
|
6116
|
-
public final fun getResourceDrawableUri (Landroid/content/Context;Ljava/lang/String;)Landroid/net/Uri;
|
|
6117
|
-
}
|
|
6118
|
-
|
|
6119
|
-
public final class com/facebook/react/views/imagehelper/ResourceDrawableIdHelper$Companion {
|
|
5686
|
+
public static final field INSTANCE Lcom/facebook/react/views/imagehelper/ResourceDrawableIdHelper;
|
|
6120
5687
|
public final fun DEPRECATED$getInstance ()Lcom/facebook/react/views/imagehelper/ResourceDrawableIdHelper;
|
|
6121
|
-
public final fun
|
|
6122
|
-
|
|
6123
|
-
|
|
6124
|
-
public final
|
|
6125
|
-
public static final
|
|
6126
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
6127
|
-
public fun <init> ()V
|
|
6128
|
-
public synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
6129
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6130
|
-
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6131
|
-
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
6132
|
-
public fun getName ()Ljava/lang/String;
|
|
6133
|
-
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
6134
|
-
public synthetic fun onDropViewInstance (Landroid/view/View;)V
|
|
6135
|
-
public fun onDropViewInstance (Lcom/facebook/react/views/modal/ReactModalHostView;)V
|
|
6136
|
-
public synthetic fun setAnimated (Landroid/view/View;Z)V
|
|
6137
|
-
public fun setAnimated (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6138
|
-
public synthetic fun setAnimationType (Landroid/view/View;Ljava/lang/String;)V
|
|
6139
|
-
public fun setAnimationType (Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;)V
|
|
6140
|
-
public synthetic fun setHardwareAccelerated (Landroid/view/View;Z)V
|
|
6141
|
-
public fun setHardwareAccelerated (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6142
|
-
public synthetic fun setIdentifier (Landroid/view/View;I)V
|
|
6143
|
-
public fun setIdentifier (Lcom/facebook/react/views/modal/ReactModalHostView;I)V
|
|
6144
|
-
public synthetic fun setNavigationBarTranslucent (Landroid/view/View;Z)V
|
|
6145
|
-
public fun setNavigationBarTranslucent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6146
|
-
public synthetic fun setPresentationStyle (Landroid/view/View;Ljava/lang/String;)V
|
|
6147
|
-
public fun setPresentationStyle (Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;)V
|
|
6148
|
-
public synthetic fun setStatusBarTranslucent (Landroid/view/View;Z)V
|
|
6149
|
-
public fun setStatusBarTranslucent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6150
|
-
public synthetic fun setSupportedOrientations (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6151
|
-
public fun setSupportedOrientations (Lcom/facebook/react/views/modal/ReactModalHostView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6152
|
-
public synthetic fun setTestId (Landroid/view/View;Ljava/lang/String;)V
|
|
6153
|
-
public fun setTestId (Lcom/facebook/react/views/modal/ReactModalHostView;Ljava/lang/String;)V
|
|
6154
|
-
public synthetic fun setTransparent (Landroid/view/View;Z)V
|
|
6155
|
-
public fun setTransparent (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6156
|
-
public synthetic fun setVisible (Landroid/view/View;Z)V
|
|
6157
|
-
public fun setVisible (Lcom/facebook/react/views/modal/ReactModalHostView;Z)V
|
|
6158
|
-
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6159
|
-
public fun updateState (Lcom/facebook/react/views/modal/ReactModalHostView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6160
|
-
}
|
|
6161
|
-
|
|
6162
|
-
public final class com/facebook/react/views/modal/ReactModalHostManager$Companion {
|
|
5688
|
+
public static final fun clear ()V
|
|
5689
|
+
public static final fun getInstance ()Lcom/facebook/react/views/imagehelper/ResourceDrawableIdHelper;
|
|
5690
|
+
public static final fun getResourceDrawable (Landroid/content/Context;Ljava/lang/String;)Landroid/graphics/drawable/Drawable;
|
|
5691
|
+
public static final fun getResourceDrawableId (Landroid/content/Context;Ljava/lang/String;)I
|
|
5692
|
+
public static final fun getResourceDrawableUri (Landroid/content/Context;Ljava/lang/String;)Landroid/net/Uri;
|
|
6163
5693
|
}
|
|
6164
5694
|
|
|
6165
5695
|
public final class com/facebook/react/views/modal/ReactModalHostView : android/view/ViewGroup, com/facebook/react/bridge/LifecycleEventListener {
|
|
@@ -6254,6 +5784,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
6254
5784
|
public fun executeKeyEvent (Landroid/view/KeyEvent;)Z
|
|
6255
5785
|
public fun flashScrollIndicators ()V
|
|
6256
5786
|
public fun fling (I)V
|
|
5787
|
+
public fun focusSearch (Landroid/view/View;I)Landroid/view/View;
|
|
6257
5788
|
public fun getChildVisibleRect (Landroid/view/View;Landroid/graphics/Rect;Landroid/graphics/Point;)Z
|
|
6258
5789
|
public fun getClippingRect (Landroid/graphics/Rect;)V
|
|
6259
5790
|
public fun getFlingAnimator ()Landroid/animation/ValueAnimator;
|
|
@@ -6316,12 +5847,15 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android
|
|
|
6316
5847
|
public fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
6317
5848
|
public fun startFlingAnimator (II)V
|
|
6318
5849
|
public fun updateClippingRect ()V
|
|
5850
|
+
public fun updateClippingRect (Ljava/util/Set;)V
|
|
6319
5851
|
}
|
|
6320
5852
|
|
|
6321
5853
|
public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler {
|
|
5854
|
+
public static final field Companion Lcom/facebook/react/views/scroll/ReactHorizontalScrollViewManager$Companion;
|
|
6322
5855
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6323
5856
|
public fun <init> ()V
|
|
6324
5857
|
public fun <init> (Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
5858
|
+
public synthetic fun <init> (Lcom/facebook/react/views/scroll/FpsListener;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6325
5859
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6326
5860
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;
|
|
6327
5861
|
public fun flashScrollIndicators (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;)V
|
|
@@ -6335,38 +5869,41 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
6335
5869
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
6336
5870
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
6337
5871
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
6338
|
-
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;ILjava/lang/Integer;)V
|
|
6339
|
-
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
6340
|
-
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6341
|
-
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
6342
|
-
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
6343
|
-
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6344
|
-
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
6345
|
-
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6346
|
-
public fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
6347
|
-
public fun setHorizontal (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6348
|
-
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6349
|
-
public fun setNestedScrollEnabled (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5872
|
+
public final fun setBorderColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;ILjava/lang/Integer;)V
|
|
5873
|
+
public final fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
5874
|
+
public final fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
5875
|
+
public final fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;IF)V
|
|
5876
|
+
public final fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
5877
|
+
public final fun setContentOffset (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
5878
|
+
public final fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
5879
|
+
public final fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5880
|
+
public final fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
5881
|
+
public final fun setHorizontal (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5882
|
+
public final fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
5883
|
+
public final fun setNestedScrollEnabled (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6350
5884
|
public fun setOverScrollMode (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6351
|
-
public fun setOverflow (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6352
|
-
public fun setPagingEnabled (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6353
|
-
public fun setPersistentScrollbar (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6354
|
-
public fun setPointerEvents (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6355
|
-
public fun setRemoveClippedSubviews (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6356
|
-
public fun setScrollEnabled (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6357
|
-
public fun setScrollEventThrottle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
6358
|
-
public fun setScrollPerfTag (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6359
|
-
public fun setSendMomentumEvents (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6360
|
-
public fun setShowsHorizontalScrollIndicator (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6361
|
-
public fun setSnapToAlignment (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
6362
|
-
public fun setSnapToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6363
|
-
public fun setSnapToInterval (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
6364
|
-
public fun setSnapToOffsets (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6365
|
-
public fun setSnapToStart (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5885
|
+
public final fun setOverflow (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
5886
|
+
public final fun setPagingEnabled (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5887
|
+
public final fun setPersistentScrollbar (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5888
|
+
public final fun setPointerEvents (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
5889
|
+
public final fun setRemoveClippedSubviews (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5890
|
+
public final fun setScrollEnabled (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5891
|
+
public final fun setScrollEventThrottle (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;I)V
|
|
5892
|
+
public final fun setScrollPerfTag (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
5893
|
+
public final fun setSendMomentumEvents (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5894
|
+
public final fun setShowsHorizontalScrollIndicator (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5895
|
+
public final fun setSnapToAlignment (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Ljava/lang/String;)V
|
|
5896
|
+
public final fun setSnapToEnd (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
5897
|
+
public final fun setSnapToInterval (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;F)V
|
|
5898
|
+
public final fun setSnapToOffsets (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
5899
|
+
public final fun setSnapToStart (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Z)V
|
|
6366
5900
|
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6367
5901
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6368
5902
|
}
|
|
6369
5903
|
|
|
5904
|
+
public final class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager$Companion {
|
|
5905
|
+
}
|
|
5906
|
+
|
|
6370
5907
|
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/ReactAccessibleScrollView, 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 {
|
|
6371
5908
|
public fun <init> (Landroid/content/Context;)V
|
|
6372
5909
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
@@ -6376,6 +5913,7 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
6376
5913
|
public fun executeKeyEvent (Landroid/view/KeyEvent;)Z
|
|
6377
5914
|
public fun flashScrollIndicators ()V
|
|
6378
5915
|
public fun fling (I)V
|
|
5916
|
+
public fun focusSearch (Landroid/view/View;I)Landroid/view/View;
|
|
6379
5917
|
public fun getChildVisibleRect (Landroid/view/View;Landroid/graphics/Rect;Landroid/graphics/Point;)Z
|
|
6380
5918
|
public fun getClippingRect (Landroid/graphics/Rect;)V
|
|
6381
5919
|
public fun getFlingAnimator ()Landroid/animation/ValueAnimator;
|
|
@@ -6439,6 +5977,7 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
6439
5977
|
public fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
6440
5978
|
public fun startFlingAnimator (II)V
|
|
6441
5979
|
public fun updateClippingRect ()V
|
|
5980
|
+
public fun updateClippingRect (Ljava/util/Set;)V
|
|
6442
5981
|
}
|
|
6443
5982
|
|
|
6444
5983
|
public final class com/facebook/react/views/scroll/ReactScrollViewCommandHelper {
|
|
@@ -6496,6 +6035,7 @@ public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
|
6496
6035
|
public static final fun emitScrollEvent (Landroid/view/ViewGroup;FF)V
|
|
6497
6036
|
public static final fun emitScrollMomentumBeginEvent (Landroid/view/ViewGroup;II)V
|
|
6498
6037
|
public static final fun emitScrollMomentumEndEvent (Landroid/view/ViewGroup;)V
|
|
6038
|
+
public static final fun findNextFocusableView (Landroid/view/ViewGroup;Landroid/view/View;IZ)Landroid/view/View;
|
|
6499
6039
|
public static final fun forceUpdateState (Landroid/view/ViewGroup;)V
|
|
6500
6040
|
public static final fun getDefaultScrollAnimationDuration (Landroid/content/Context;)I
|
|
6501
6041
|
public static final fun getNextFlingStartValue (Landroid/view/ViewGroup;III)I
|
|
@@ -6505,6 +6045,7 @@ public final class com/facebook/react/views/scroll/ReactScrollViewHelper {
|
|
|
6505
6045
|
public final fun registerFlingAnimator (Landroid/view/ViewGroup;)V
|
|
6506
6046
|
public static final fun removeLayoutChangeListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$LayoutChangeListener;)V
|
|
6507
6047
|
public static final fun removeScrollListener (Lcom/facebook/react/views/scroll/ReactScrollViewHelper$ScrollListener;)V
|
|
6048
|
+
public static final fun resolveAbsoluteDirection (IZI)I
|
|
6508
6049
|
public static final fun smoothScrollTo (Landroid/view/ViewGroup;II)V
|
|
6509
6050
|
public static final fun updateFabricScrollState (Landroid/view/ViewGroup;)V
|
|
6510
6051
|
public final fun updateFabricScrollState (Landroid/view/ViewGroup;II)V
|
|
@@ -6563,10 +6104,11 @@ public abstract interface class com/facebook/react/views/scroll/ReactScrollViewH
|
|
|
6563
6104
|
}
|
|
6564
6105
|
|
|
6565
6106
|
public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebook/react/uimanager/ViewGroupManager, com/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollCommandHandler {
|
|
6107
|
+
public static final field Companion Lcom/facebook/react/views/scroll/ReactScrollViewManager$Companion;
|
|
6566
6108
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
6567
6109
|
public fun <init> ()V
|
|
6568
6110
|
public fun <init> (Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
6569
|
-
public
|
|
6111
|
+
public synthetic fun <init> (Lcom/facebook/react/views/scroll/FpsListener;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6570
6112
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6571
6113
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/scroll/ReactScrollView;
|
|
6572
6114
|
public fun flashScrollIndicators (Lcom/facebook/react/views/scroll/ReactScrollView;)V
|
|
@@ -6582,39 +6124,43 @@ public class com/facebook/react/views/scroll/ReactScrollViewManager : com/facebo
|
|
|
6582
6124
|
public synthetic fun scrollTo (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToCommandData;)V
|
|
6583
6125
|
public fun scrollToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
6584
6126
|
public synthetic fun scrollToEnd (Ljava/lang/Object;Lcom/facebook/react/views/scroll/ReactScrollViewCommandHelper$ScrollToEndCommandData;)V
|
|
6585
|
-
public fun setBorderColor (Lcom/facebook/react/views/scroll/ReactScrollView;ILjava/lang/Integer;)V
|
|
6586
|
-
public fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
6587
|
-
public fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6588
|
-
public fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
6589
|
-
public fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
6590
|
-
public fun setContentOffset (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6591
|
-
public fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
6592
|
-
public fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6593
|
-
public fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
6594
|
-
public fun setHorizontal (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6595
|
-
public fun setIsInvertedVirtualizedList (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6596
|
-
public fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6597
|
-
public fun setNestedScrollEnabled (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6127
|
+
public final fun setBorderColor (Lcom/facebook/react/views/scroll/ReactScrollView;ILjava/lang/Integer;)V
|
|
6128
|
+
public final fun setBorderRadius (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
6129
|
+
public final fun setBorderStyle (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6130
|
+
public final fun setBorderWidth (Lcom/facebook/react/views/scroll/ReactScrollView;IF)V
|
|
6131
|
+
public final fun setBottomFillColor (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
6132
|
+
public final fun setContentOffset (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6133
|
+
public final fun setDecelerationRate (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
6134
|
+
public final fun setDisableIntervalMomentum (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6135
|
+
public final fun setFadingEdgeLength (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
6136
|
+
public final fun setHorizontal (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6137
|
+
public final fun setIsInvertedVirtualizedList (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6138
|
+
public final fun setMaintainVisibleContentPosition (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
6139
|
+
public final fun setNestedScrollEnabled (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6598
6140
|
public fun setOverScrollMode (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6599
|
-
public fun setOverflow (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6600
|
-
public fun setPagingEnabled (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6601
|
-
public fun setPersistentScrollbar (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6602
|
-
public fun setPointerEvents (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6603
|
-
public fun setRemoveClippedSubviews (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6604
|
-
public fun setScrollEnabled (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6605
|
-
public fun setScrollEventThrottle (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
6606
|
-
public fun setScrollPerfTag (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6607
|
-
public fun setSendMomentumEvents (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6608
|
-
public fun setShowsVerticalScrollIndicator (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6609
|
-
public fun setSnapToAlignment (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6610
|
-
public fun setSnapToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6611
|
-
public fun setSnapToInterval (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
6612
|
-
public fun setSnapToOffsets (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6613
|
-
public fun setSnapToStart (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6141
|
+
public final fun setOverflow (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6142
|
+
public final fun setPagingEnabled (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6143
|
+
public final fun setPersistentScrollbar (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6144
|
+
public final fun setPointerEvents (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6145
|
+
public final fun setRemoveClippedSubviews (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6146
|
+
public final fun setScrollEnabled (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6147
|
+
public final fun setScrollEventThrottle (Lcom/facebook/react/views/scroll/ReactScrollView;I)V
|
|
6148
|
+
public final fun setScrollPerfTag (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6149
|
+
public final fun setSendMomentumEvents (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6150
|
+
public final fun setShowsVerticalScrollIndicator (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6151
|
+
public final fun setSnapToAlignment (Lcom/facebook/react/views/scroll/ReactScrollView;Ljava/lang/String;)V
|
|
6152
|
+
public final fun setSnapToEnd (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6153
|
+
public final fun setSnapToInterval (Lcom/facebook/react/views/scroll/ReactScrollView;F)V
|
|
6154
|
+
public final fun setSnapToOffsets (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6155
|
+
public final fun setSnapToStart (Lcom/facebook/react/views/scroll/ReactScrollView;Z)V
|
|
6614
6156
|
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6615
6157
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6616
6158
|
}
|
|
6617
6159
|
|
|
6160
|
+
public final class com/facebook/react/views/scroll/ReactScrollViewManager$Companion {
|
|
6161
|
+
public final fun createExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
6162
|
+
}
|
|
6163
|
+
|
|
6618
6164
|
public final class com/facebook/react/views/scroll/ScrollEvent : com/facebook/react/uimanager/events/Event {
|
|
6619
6165
|
public static final field Companion Lcom/facebook/react/views/scroll/ScrollEvent$Companion;
|
|
6620
6166
|
public fun canCoalesce ()Z
|
|
@@ -6664,11 +6210,6 @@ public final class com/facebook/react/views/text/DefaultStyleValuesUtil {
|
|
|
6664
6210
|
public static final fun getDefaultTextColorHint (Landroid/content/Context;)Landroid/content/res/ColorStateList;
|
|
6665
6211
|
}
|
|
6666
6212
|
|
|
6667
|
-
public final class com/facebook/react/views/text/FontMetricsUtil {
|
|
6668
|
-
public static final field INSTANCE Lcom/facebook/react/views/text/FontMetricsUtil;
|
|
6669
|
-
public static final fun getFontMetrics (Ljava/lang/CharSequence;Landroid/text/Layout;Landroid/text/TextPaint;Landroid/content/Context;)Lcom/facebook/react/bridge/WritableArray;
|
|
6670
|
-
}
|
|
6671
|
-
|
|
6672
6213
|
public abstract class com/facebook/react/views/text/ReactBaseTextShadowNode : com/facebook/react/uimanager/LayoutShadowNode {
|
|
6673
6214
|
public static final field DEFAULT_TEXT_SHADOW_COLOR I
|
|
6674
6215
|
public static final field PROP_SHADOW_COLOR Ljava/lang/String;
|
|
@@ -6750,48 +6291,6 @@ public final class com/facebook/react/views/text/ReactFontManager$Companion {
|
|
|
6750
6291
|
public final fun getInstance ()Lcom/facebook/react/views/text/ReactFontManager;
|
|
6751
6292
|
}
|
|
6752
6293
|
|
|
6753
|
-
public final class com/facebook/react/views/text/ReactRawTextManager : com/facebook/react/uimanager/ViewManager {
|
|
6754
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
6755
|
-
public fun <init> ()V
|
|
6756
|
-
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
6757
|
-
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactRawTextShadowNode;
|
|
6758
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6759
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/text/ReactTextView;
|
|
6760
|
-
public fun getName ()Ljava/lang/String;
|
|
6761
|
-
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
6762
|
-
public fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
6763
|
-
}
|
|
6764
|
-
|
|
6765
|
-
public class com/facebook/react/views/text/ReactRawTextShadowNode : com/facebook/react/uimanager/ReactShadowNodeImpl {
|
|
6766
|
-
public fun <init> ()V
|
|
6767
|
-
public fun getText ()Ljava/lang/String;
|
|
6768
|
-
public fun isVirtual ()Z
|
|
6769
|
-
public fun setText (Ljava/lang/String;)V
|
|
6770
|
-
public fun toString ()Ljava/lang/String;
|
|
6771
|
-
}
|
|
6772
|
-
|
|
6773
|
-
public abstract class com/facebook/react/views/text/ReactTextAnchorViewManager : com/facebook/react/uimanager/BaseViewManager {
|
|
6774
|
-
public fun <init> ()V
|
|
6775
|
-
public fun setAccessible (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
6776
|
-
public fun setAdjustFontSizeToFit (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
6777
|
-
public fun setAndroidHyphenationFrequency (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
6778
|
-
public fun setBorderColor (Lcom/facebook/react/views/text/ReactTextView;ILjava/lang/Integer;)V
|
|
6779
|
-
public fun setBorderRadius (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
6780
|
-
public fun setBorderStyle (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
6781
|
-
public fun setBorderWidth (Lcom/facebook/react/views/text/ReactTextView;IF)V
|
|
6782
|
-
public fun setDataDetectorType (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
6783
|
-
public fun setDisabled (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
6784
|
-
public fun setEllipsizeMode (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
6785
|
-
public fun setFontSize (Lcom/facebook/react/views/text/ReactTextView;F)V
|
|
6786
|
-
public fun setIncludeFontPadding (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
6787
|
-
public fun setLetterSpacing (Lcom/facebook/react/views/text/ReactTextView;F)V
|
|
6788
|
-
public fun setNotifyOnInlineViewLayout (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
6789
|
-
public fun setNumberOfLines (Lcom/facebook/react/views/text/ReactTextView;I)V
|
|
6790
|
-
public fun setSelectable (Lcom/facebook/react/views/text/ReactTextView;Z)V
|
|
6791
|
-
public fun setSelectionColor (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/Integer;)V
|
|
6792
|
-
public fun setTextAlignVertical (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
|
|
6793
|
-
}
|
|
6794
|
-
|
|
6795
6294
|
public class com/facebook/react/views/text/ReactTextShadowNode : com/facebook/react/views/text/ReactBaseTextShadowNode {
|
|
6796
6295
|
public fun <init> ()V
|
|
6797
6296
|
public fun <init> (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)V
|
|
@@ -6858,7 +6357,6 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
|
|
|
6858
6357
|
public fun setLetterSpacing (F)V
|
|
6859
6358
|
public fun setLinkifyMask (I)V
|
|
6860
6359
|
public fun setMinimumFontSize (F)V
|
|
6861
|
-
public fun setNotifyOnInlineViewLayout (Z)V
|
|
6862
6360
|
public fun setNumberOfLines (I)V
|
|
6863
6361
|
public fun setOverflow (Ljava/lang/String;)V
|
|
6864
6362
|
public fun setSpanned (Landroid/text/Spannable;)V
|
|
@@ -6868,7 +6366,7 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
|
|
|
6868
6366
|
protected fun verifyDrawable (Landroid/graphics/drawable/Drawable;)Z
|
|
6869
6367
|
}
|
|
6870
6368
|
|
|
6871
|
-
public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/react/
|
|
6369
|
+
public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/react/uimanager/IViewManagerWithChildren {
|
|
6872
6370
|
protected field mReactTextViewManagerCallback Lcom/facebook/react/views/text/ReactTextViewManagerCallback;
|
|
6873
6371
|
public fun <init> ()V
|
|
6874
6372
|
public fun <init> (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)V
|
|
@@ -6978,6 +6476,7 @@ public class com/facebook/react/views/text/TextAttributeProps {
|
|
|
6978
6476
|
public fun getEffectiveFontSize ()I
|
|
6979
6477
|
public fun getEffectiveLetterSpacing ()F
|
|
6980
6478
|
public fun getEffectiveLineHeight ()F
|
|
6479
|
+
public static fun getEllipsizeMode (Ljava/lang/String;)Landroid/text/TextUtils$TruncateAt;
|
|
6981
6480
|
public fun getFontFamily ()Ljava/lang/String;
|
|
6982
6481
|
public fun getFontFeatureSettings ()Ljava/lang/String;
|
|
6983
6482
|
public fun getFontStyle ()I
|
|
@@ -7056,69 +6555,41 @@ public class com/facebook/react/views/text/TextLayoutManager {
|
|
|
7056
6555
|
public static fun setCachedSpannableForTag (ILandroid/text/Spannable;)V
|
|
7057
6556
|
}
|
|
7058
6557
|
|
|
7059
|
-
public final class com/facebook/react/views/text/TextTransform : java/lang/Enum {
|
|
7060
|
-
public static final field CAPITALIZE Lcom/facebook/react/views/text/TextTransform;
|
|
7061
|
-
public static final field Companion Lcom/facebook/react/views/text/TextTransform$Companion;
|
|
7062
|
-
public static final field LOWERCASE Lcom/facebook/react/views/text/TextTransform;
|
|
7063
|
-
public static final field NONE Lcom/facebook/react/views/text/TextTransform;
|
|
7064
|
-
public static final field UNSET Lcom/facebook/react/views/text/TextTransform;
|
|
7065
|
-
public static final field UPPERCASE Lcom/facebook/react/views/text/TextTransform;
|
|
7066
|
-
public static final fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7067
|
-
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
7068
|
-
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/views/text/TextTransform;
|
|
7069
|
-
public static fun values ()[Lcom/facebook/react/views/text/TextTransform;
|
|
7070
|
-
}
|
|
7071
|
-
|
|
7072
|
-
public final class com/facebook/react/views/text/TextTransform$Companion {
|
|
7073
|
-
public final fun apply (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7074
|
-
}
|
|
7075
|
-
|
|
7076
|
-
public final class com/facebook/react/views/text/TextTransformKt {
|
|
7077
|
-
public static final fun applyTextTransform (Ljava/lang/String;Lcom/facebook/react/views/text/TextTransform;)Ljava/lang/String;
|
|
7078
|
-
}
|
|
7079
|
-
|
|
7080
6558
|
public abstract interface class com/facebook/react/views/textinput/ContentSizeWatcher {
|
|
7081
6559
|
public abstract fun onLayout ()V
|
|
7082
6560
|
}
|
|
7083
6561
|
|
|
7084
|
-
public class com/facebook/react/views/textinput/ReactContentSizeChangedEvent : com/facebook/react/uimanager/events/Event {
|
|
7085
|
-
public static final field EVENT_NAME Ljava/lang/String;
|
|
7086
|
-
public fun <init> (IFF)V
|
|
7087
|
-
public fun <init> (IIFF)V
|
|
7088
|
-
protected fun getEventData ()Lcom/facebook/react/bridge/WritableMap;
|
|
7089
|
-
public fun getEventName ()Ljava/lang/String;
|
|
7090
|
-
}
|
|
7091
|
-
|
|
7092
6562
|
public class com/facebook/react/views/textinput/ReactEditText : androidx/appcompat/widget/AppCompatEditText {
|
|
7093
|
-
public static final field
|
|
7094
|
-
protected field mContainsImages Z
|
|
7095
|
-
protected field mDisableTextDiffing Z
|
|
7096
|
-
protected field mIsSettingTextFromJS Z
|
|
7097
|
-
protected field mIsSettingTextFromState Z
|
|
7098
|
-
protected field mNativeEventCount I
|
|
6563
|
+
public static final field Companion Lcom/facebook/react/views/textinput/ReactEditText$Companion;
|
|
7099
6564
|
public fun <init> (Landroid/content/Context;)V
|
|
7100
6565
|
public fun addTextChangedListener (Landroid/text/TextWatcher;)V
|
|
7101
|
-
protected fun applyTextAttributes ()V
|
|
7102
|
-
public fun canUpdateWithEventCount (I)Z
|
|
7103
|
-
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
public fun getDisableFullscreenUI ()Z
|
|
7107
|
-
public fun
|
|
7108
|
-
|
|
7109
|
-
public fun
|
|
7110
|
-
|
|
7111
|
-
public fun
|
|
6566
|
+
protected final fun applyTextAttributes ()V
|
|
6567
|
+
public final fun canUpdateWithEventCount (I)Z
|
|
6568
|
+
protected final fun finalize ()V
|
|
6569
|
+
public final fun getBorderColor (I)I
|
|
6570
|
+
protected final fun getContainsImages ()Z
|
|
6571
|
+
public final fun getDisableFullscreenUI ()Z
|
|
6572
|
+
public final fun getDragAndDropFilter ()Ljava/util/List;
|
|
6573
|
+
protected final fun getNativeEventCount ()I
|
|
6574
|
+
public final fun getReturnKeyType ()Ljava/lang/String;
|
|
6575
|
+
public final fun getStagedInputType ()I
|
|
6576
|
+
public final fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
|
|
6577
|
+
public final fun getSubmitBehavior ()Ljava/lang/String;
|
|
6578
|
+
protected final fun hideSoftKeyboard ()V
|
|
6579
|
+
public final fun incrementAndGetEventCounter ()I
|
|
7112
6580
|
public fun invalidateDrawable (Landroid/graphics/drawable/Drawable;)V
|
|
7113
6581
|
public fun isLayoutRequested ()Z
|
|
7114
|
-
|
|
7115
|
-
|
|
7116
|
-
public fun
|
|
7117
|
-
public fun
|
|
7118
|
-
public fun
|
|
6582
|
+
protected final fun isSettingTextFromJS ()Z
|
|
6583
|
+
protected final fun isSettingTextFromState ()Z
|
|
6584
|
+
public final fun maybeSetSelection (III)V
|
|
6585
|
+
public final fun maybeSetTextFromJS (Lcom/facebook/react/views/text/ReactTextUpdate;)V
|
|
6586
|
+
public final fun maybeSetTextFromState (Lcom/facebook/react/views/text/ReactTextUpdate;)V
|
|
6587
|
+
public final fun maybeUpdateTypeface ()V
|
|
7119
6588
|
public fun onAttachedToWindow ()V
|
|
6589
|
+
public fun onConfigurationChanged (Landroid/content/res/Configuration;)V
|
|
7120
6590
|
public fun onCreateInputConnection (Landroid/view/inputmethod/EditorInfo;)Landroid/view/inputmethod/InputConnection;
|
|
7121
6591
|
public fun onDetachedFromWindow ()V
|
|
6592
|
+
public fun onDragEvent (Landroid/view/DragEvent;)Z
|
|
7122
6593
|
public fun onDraw (Landroid/graphics/Canvas;)V
|
|
7123
6594
|
public fun onFinishTemporaryDetach ()V
|
|
7124
6595
|
protected fun onFocusChanged (ZILandroid/graphics/Rect;)V
|
|
@@ -7130,67 +6601,67 @@ public class com/facebook/react/views/textinput/ReactEditText : androidx/appcomp
|
|
|
7130
6601
|
public fun onTextContextMenuItem (I)Z
|
|
7131
6602
|
public fun onTouchEvent (Landroid/view/MotionEvent;)Z
|
|
7132
6603
|
public fun removeTextChangedListener (Landroid/text/TextWatcher;)V
|
|
7133
|
-
public fun
|
|
7134
|
-
public fun
|
|
7135
|
-
public fun
|
|
7136
|
-
public fun setAutoFocus (Z)V
|
|
6604
|
+
public final fun requestFocusFromJS ()V
|
|
6605
|
+
public final fun setAllowFontScaling (Z)V
|
|
6606
|
+
public final fun setAutoFocus (Z)V
|
|
7137
6607
|
public fun setBackgroundColor (I)V
|
|
7138
|
-
public fun setBorderColor (ILjava/lang/Integer;)V
|
|
7139
|
-
public fun setBorderRadius (F)V
|
|
7140
|
-
public fun setBorderRadius (FI)V
|
|
7141
|
-
public fun setBorderStyle (Ljava/lang/String;)V
|
|
7142
|
-
public fun setBorderWidth (IF)V
|
|
7143
|
-
|
|
7144
|
-
public fun
|
|
7145
|
-
public fun
|
|
7146
|
-
public fun
|
|
6608
|
+
public final fun setBorderColor (ILjava/lang/Integer;)V
|
|
6609
|
+
public final fun setBorderRadius (F)V
|
|
6610
|
+
public final fun setBorderRadius (FI)V
|
|
6611
|
+
public final fun setBorderStyle (Ljava/lang/String;)V
|
|
6612
|
+
public final fun setBorderWidth (IF)V
|
|
6613
|
+
protected final fun setContainsImages (Z)V
|
|
6614
|
+
public final fun setContentSizeWatcher (Lcom/facebook/react/views/textinput/ContentSizeWatcher;)V
|
|
6615
|
+
public final fun setContextMenuHidden (Z)V
|
|
6616
|
+
public final fun setDisableFullscreenUI (Z)V
|
|
6617
|
+
public final fun setDragAndDropFilter (Ljava/util/List;)V
|
|
6618
|
+
public final fun setEventDispatcher (Lcom/facebook/react/uimanager/events/EventDispatcher;)V
|
|
6619
|
+
public final fun setFontFamily (Ljava/lang/String;)V
|
|
7147
6620
|
public fun setFontFeatureSettings (Ljava/lang/String;)V
|
|
7148
|
-
public fun setFontSize (F)V
|
|
7149
|
-
public fun setFontStyle (Ljava/lang/String;)V
|
|
7150
|
-
public fun setFontWeight (Ljava/lang/String;)V
|
|
6621
|
+
public final fun setFontSize (F)V
|
|
6622
|
+
public final fun setFontStyle (Ljava/lang/String;)V
|
|
6623
|
+
public final fun setFontWeight (Ljava/lang/String;)V
|
|
7151
6624
|
public fun setInputType (I)V
|
|
7152
|
-
public fun setLetterSpacingPt (F)V
|
|
6625
|
+
public final fun setLetterSpacingPt (F)V
|
|
7153
6626
|
public fun setLineHeight (I)V
|
|
7154
|
-
public fun setMaxFontSizeMultiplier (F)V
|
|
7155
|
-
|
|
7156
|
-
public fun
|
|
7157
|
-
public fun
|
|
7158
|
-
public fun
|
|
7159
|
-
public fun
|
|
7160
|
-
public fun
|
|
6627
|
+
public final fun setMaxFontSizeMultiplier (F)V
|
|
6628
|
+
protected final fun setNativeEventCount (I)V
|
|
6629
|
+
public final fun setOnKeyPress (Z)V
|
|
6630
|
+
public final fun setOverflow (Ljava/lang/String;)V
|
|
6631
|
+
public final fun setPlaceholder (Ljava/lang/String;)V
|
|
6632
|
+
public final fun setReturnKeyType (Ljava/lang/String;)V
|
|
6633
|
+
public final fun setScrollWatcher (Lcom/facebook/react/views/textinput/ScrollWatcher;)V
|
|
6634
|
+
public final fun setSelectTextOnFocus (Z)V
|
|
7161
6635
|
public fun setSelection (II)V
|
|
7162
|
-
|
|
7163
|
-
|
|
7164
|
-
public fun
|
|
7165
|
-
public fun
|
|
7166
|
-
public fun
|
|
7167
|
-
|
|
6636
|
+
protected final fun setSettingTextFromJS (Z)V
|
|
6637
|
+
protected final fun setSettingTextFromState (Z)V
|
|
6638
|
+
public final fun setStagedInputType (I)V
|
|
6639
|
+
public final fun setStateWrapper (Lcom/facebook/react/uimanager/StateWrapper;)V
|
|
6640
|
+
public final fun setSubmitBehavior (Ljava/lang/String;)V
|
|
6641
|
+
public final fun shouldBlurOnReturn ()Z
|
|
6642
|
+
public final fun shouldSubmitOnReturn ()Z
|
|
6643
|
+
protected final fun showSoftKeyboard ()Z
|
|
7168
6644
|
protected fun verifyDrawable (Landroid/graphics/drawable/Drawable;)Z
|
|
7169
6645
|
}
|
|
7170
6646
|
|
|
7171
|
-
public class com/facebook/react/views/textinput/
|
|
7172
|
-
public
|
|
7173
|
-
public fun <init> (IILjava/lang/String;I)V
|
|
7174
|
-
public fun <init> (ILjava/lang/String;I)V
|
|
7175
|
-
protected fun getEventData ()Lcom/facebook/react/bridge/WritableMap;
|
|
7176
|
-
public fun getEventName ()Ljava/lang/String;
|
|
6647
|
+
public final class com/facebook/react/views/textinput/ReactEditText$Companion {
|
|
6648
|
+
public final fun getDEBUG_MODE ()Z
|
|
7177
6649
|
}
|
|
7178
6650
|
|
|
7179
6651
|
public final class com/facebook/react/views/textinput/ReactTextInputLocalData {
|
|
7180
6652
|
public fun <init> (Landroid/widget/EditText;)V
|
|
7181
|
-
public fun apply (Landroid/widget/EditText;)V
|
|
6653
|
+
public final fun apply (Landroid/widget/EditText;)V
|
|
7182
6654
|
}
|
|
7183
6655
|
|
|
7184
6656
|
public class com/facebook/react/views/textinput/ReactTextInputManager : com/facebook/react/uimanager/BaseViewManager {
|
|
6657
|
+
public static final field Companion Lcom/facebook/react/views/textinput/ReactTextInputManager$Companion;
|
|
7185
6658
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
7186
|
-
public static final field TAG Ljava/lang/String;
|
|
7187
|
-
protected field mReactTextViewManagerCallback Lcom/facebook/react/views/text/ReactTextViewManagerCallback;
|
|
7188
6659
|
public fun <init> ()V
|
|
7189
|
-
|
|
6660
|
+
public synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
7190
6661
|
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/textinput/ReactEditText;)V
|
|
7191
6662
|
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
|
|
7192
6663
|
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactBaseTextShadowNode;
|
|
7193
|
-
public fun createShadowNodeInstance (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Lcom/facebook/react/views/text/ReactBaseTextShadowNode;
|
|
6664
|
+
public final fun createShadowNodeInstance (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Lcom/facebook/react/views/text/ReactBaseTextShadowNode;
|
|
7194
6665
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7195
6666
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/textinput/ReactEditText;
|
|
7196
6667
|
public fun getCommandsMap ()Ljava/util/Map;
|
|
@@ -7198,72 +6669,79 @@ public class com/facebook/react/views/textinput/ReactTextInputManager : com/face
|
|
|
7198
6669
|
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
|
|
7199
6670
|
public fun getExportedViewConstants ()Ljava/util/Map;
|
|
7200
6671
|
public fun getName ()Ljava/lang/String;
|
|
7201
|
-
public fun getReactTextUpdate (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/common/mapbuffer/MapBuffer;)Ljava/lang/Object;
|
|
6672
|
+
public final fun getReactTextUpdate (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/common/mapbuffer/MapBuffer;)Ljava/lang/Object;
|
|
6673
|
+
protected final fun getReactTextViewManagerCallback ()Lcom/facebook/react/views/text/ReactTextViewManagerCallback;
|
|
7202
6674
|
public fun getShadowNodeClass ()Ljava/lang/Class;
|
|
7203
|
-
|
|
6675
|
+
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
|
|
7204
6676
|
protected fun onAfterUpdateTransaction (Lcom/facebook/react/views/textinput/ReactEditText;)V
|
|
7205
6677
|
public synthetic fun receiveCommand (Landroid/view/View;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
7206
6678
|
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7207
6679
|
public fun receiveCommand (Lcom/facebook/react/views/textinput/ReactEditText;ILcom/facebook/react/bridge/ReadableArray;)V
|
|
7208
6680
|
public fun receiveCommand (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
7209
|
-
public fun
|
|
7210
|
-
public fun
|
|
7211
|
-
public fun
|
|
7212
|
-
public fun
|
|
7213
|
-
public fun
|
|
7214
|
-
public fun
|
|
7215
|
-
public fun
|
|
7216
|
-
public fun
|
|
7217
|
-
public fun
|
|
7218
|
-
public fun
|
|
7219
|
-
public fun
|
|
7220
|
-
public fun
|
|
7221
|
-
public fun
|
|
7222
|
-
public fun
|
|
7223
|
-
public fun
|
|
7224
|
-
public fun
|
|
7225
|
-
public fun
|
|
7226
|
-
public fun
|
|
7227
|
-
public fun
|
|
7228
|
-
public fun
|
|
7229
|
-
public fun
|
|
7230
|
-
public fun
|
|
7231
|
-
public fun
|
|
7232
|
-
public fun
|
|
7233
|
-
public fun
|
|
7234
|
-
public fun
|
|
7235
|
-
public fun
|
|
7236
|
-
public fun
|
|
7237
|
-
public fun
|
|
7238
|
-
public fun
|
|
7239
|
-
public fun
|
|
7240
|
-
public fun
|
|
7241
|
-
public fun
|
|
7242
|
-
public fun
|
|
7243
|
-
public fun
|
|
6681
|
+
public final fun setAcceptDragAndDropTypes (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6682
|
+
public final fun setAllowFontScaling (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6683
|
+
public final fun setAutoCapitalize (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/Dynamic;)V
|
|
6684
|
+
public final fun setAutoCorrect (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Boolean;)V
|
|
6685
|
+
public final fun setAutoFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6686
|
+
public final fun setBorderColor (Lcom/facebook/react/views/textinput/ReactEditText;ILjava/lang/Integer;)V
|
|
6687
|
+
public final fun setBorderRadius (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
6688
|
+
public final fun setBorderStyle (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6689
|
+
public final fun setBorderWidth (Lcom/facebook/react/views/textinput/ReactEditText;IF)V
|
|
6690
|
+
public final fun setCaretHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6691
|
+
public final fun setColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6692
|
+
public final fun setContextMenuHidden (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6693
|
+
public final fun setCursorColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6694
|
+
public final fun setDisableFullscreenUI (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6695
|
+
public final fun setEditable (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6696
|
+
public final fun setFontFamily (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6697
|
+
public final fun setFontSize (Lcom/facebook/react/views/textinput/ReactEditText;F)V
|
|
6698
|
+
public final fun setFontStyle (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6699
|
+
public final fun setFontVariant (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6700
|
+
public final fun setFontWeight (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6701
|
+
public final fun setImportantForAutofill (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6702
|
+
public final fun setIncludeFontPadding (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6703
|
+
public final fun setInlineImageLeft (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6704
|
+
public final fun setInlineImagePadding (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
6705
|
+
public final fun setKeyboardType (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6706
|
+
public final fun setLetterSpacing (Lcom/facebook/react/views/textinput/ReactEditText;F)V
|
|
6707
|
+
public final fun setLineHeight (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
6708
|
+
public final fun setMaxFontSizeMultiplier (Lcom/facebook/react/views/textinput/ReactEditText;F)V
|
|
6709
|
+
public final fun setMaxLength (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6710
|
+
public final fun setMultiline (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6711
|
+
public final fun setNumLines (Lcom/facebook/react/views/textinput/ReactEditText;I)V
|
|
6712
|
+
public final fun setOnContentSizeChange (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6713
|
+
public final fun setOnKeyPress (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6714
|
+
public final fun setOnScroll (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6715
|
+
public final fun setOnSelectionChange (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6716
|
+
public final fun setOverflow (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
7244
6717
|
public synthetic fun setPadding (Landroid/view/View;IIII)V
|
|
7245
6718
|
public fun setPadding (Lcom/facebook/react/views/textinput/ReactEditText;IIII)V
|
|
7246
|
-
public fun setPlaceholder (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
7247
|
-
public fun setPlaceholderTextColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
7248
|
-
|
|
7249
|
-
public fun
|
|
7250
|
-
public fun
|
|
7251
|
-
public fun
|
|
7252
|
-
public fun
|
|
7253
|
-
public fun
|
|
7254
|
-
public fun
|
|
7255
|
-
public fun
|
|
7256
|
-
public fun
|
|
7257
|
-
public fun
|
|
7258
|
-
public fun
|
|
7259
|
-
public fun
|
|
7260
|
-
public fun
|
|
6719
|
+
public final fun setPlaceholder (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6720
|
+
public final fun setPlaceholderTextColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6721
|
+
protected final fun setReactTextViewManagerCallback (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)V
|
|
6722
|
+
public final fun setReturnKeyLabel (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6723
|
+
public final fun setReturnKeyType (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6724
|
+
public final fun setSecureTextEntry (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6725
|
+
public final fun setSelectTextOnFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
6726
|
+
public final fun setSelectionColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6727
|
+
public final fun setSelectionHandleColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6728
|
+
public final fun setSubmitBehavior (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6729
|
+
public final fun setTextAlign (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6730
|
+
public final fun setTextAlignVertical (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6731
|
+
public final fun setTextContentType (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6732
|
+
public final fun setTextDecorationLine (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/String;)V
|
|
6733
|
+
public final fun setUnderlineColor (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Integer;)V
|
|
6734
|
+
public final fun showKeyboardOnFocus (Lcom/facebook/react/views/textinput/ReactEditText;Z)V
|
|
7261
6735
|
public synthetic fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
|
|
7262
6736
|
public fun updateExtraData (Lcom/facebook/react/views/textinput/ReactEditText;Ljava/lang/Object;)V
|
|
7263
6737
|
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7264
6738
|
public fun updateState (Lcom/facebook/react/views/textinput/ReactEditText;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7265
6739
|
}
|
|
7266
6740
|
|
|
6741
|
+
public final class com/facebook/react/views/textinput/ReactTextInputManager$Companion {
|
|
6742
|
+
public final fun getTAG ()Ljava/lang/String;
|
|
6743
|
+
}
|
|
6744
|
+
|
|
7267
6745
|
public abstract interface class com/facebook/react/views/textinput/ScrollWatcher {
|
|
7268
6746
|
public abstract fun onScrollChanged (IIII)V
|
|
7269
6747
|
}
|
|
@@ -7273,11 +6751,6 @@ public final class com/facebook/react/views/view/ColorUtil {
|
|
|
7273
6751
|
public static final fun normalize (DDDD)I
|
|
7274
6752
|
}
|
|
7275
6753
|
|
|
7276
|
-
public final class com/facebook/react/views/view/MeasureUtil {
|
|
7277
|
-
public static final field INSTANCE Lcom/facebook/react/views/view/MeasureUtil;
|
|
7278
|
-
public static final fun getMeasureSpec (FLcom/facebook/yoga/YogaMeasureMode;)I
|
|
7279
|
-
}
|
|
7280
|
-
|
|
7281
6754
|
public abstract class com/facebook/react/views/view/ReactClippingViewManager : com/facebook/react/uimanager/ViewGroupManager {
|
|
7282
6755
|
public fun <init> ()V
|
|
7283
6756
|
public synthetic fun addView (Landroid/view/View;Landroid/view/View;I)V
|
|
@@ -7349,6 +6822,7 @@ public class com/facebook/react/views/view/ReactViewGroup : android/view/ViewGro
|
|
|
7349
6822
|
public fun setRemoveClippedSubviews (Z)V
|
|
7350
6823
|
public fun setTranslucentBackgroundDrawable (Landroid/graphics/drawable/Drawable;)V
|
|
7351
6824
|
public fun updateClippingRect ()V
|
|
6825
|
+
public fun updateClippingRect (Ljava/util/Set;)V
|
|
7352
6826
|
public fun updateDrawingOrder ()V
|
|
7353
6827
|
}
|
|
7354
6828
|
|
|
@@ -7356,9 +6830,12 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
7356
6830
|
public static final field Companion Lcom/facebook/react/views/view/ReactViewManager$Companion;
|
|
7357
6831
|
public static final field REACT_CLASS Ljava/lang/String;
|
|
7358
6832
|
public fun <init> ()V
|
|
6833
|
+
public synthetic fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)V
|
|
6834
|
+
protected fun addEventEmitters (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/view/ReactViewGroup;)V
|
|
7359
6835
|
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
7360
6836
|
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/view/ReactViewGroup;
|
|
7361
6837
|
public fun getCommandsMap ()Ljava/util/Map;
|
|
6838
|
+
public fun getExportedCustomBubblingEventTypeConstants ()Ljava/util/Map;
|
|
7362
6839
|
public fun getName ()Ljava/lang/String;
|
|
7363
6840
|
public fun nextFocusDown (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
7364
6841
|
public fun nextFocusForward (Lcom/facebook/react/views/view/ReactViewGroup;I)V
|
|
@@ -7398,10 +6875,3 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
|
|
|
7398
6875
|
public final class com/facebook/react/views/view/ReactViewManager$Companion {
|
|
7399
6876
|
}
|
|
7400
6877
|
|
|
7401
|
-
public final class com/facebook/react/views/view/ViewGroupClickEvent : com/facebook/react/uimanager/events/Event {
|
|
7402
|
-
public fun <init> (I)V
|
|
7403
|
-
public fun <init> (II)V
|
|
7404
|
-
public fun canCoalesce ()Z
|
|
7405
|
-
public fun getEventName ()Ljava/lang/String;
|
|
7406
|
-
}
|
|
7407
|
-
|