react-native-tvos 0.78.0-0rc4 → 0.79.0-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/ActionSheetIOS/ActionSheetIOS.js +39 -18
- package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +2 -2
- package/Libraries/Alert/Alert.js +33 -10
- package/Libraries/Alert/NativeAlertManager.js +2 -2
- package/Libraries/Alert/RCTAlertManager.android.js +1 -1
- package/Libraries/Alert/RCTAlertManager.ios.js +1 -1
- package/Libraries/Alert/RCTAlertManager.js.flow +1 -1
- package/Libraries/Animated/Animated.js +8 -37
- package/{flow/react.js → Libraries/Animated/Animated.js.flow} +6 -6
- package/Libraries/Animated/AnimatedExports.js +47 -0
- package/Libraries/Animated/AnimatedExports.js.flow +48 -0
- package/Libraries/Animated/AnimatedMock.js +1 -1
- package/Libraries/Animated/NativeAnimatedModule.js +2 -2
- package/Libraries/Animated/NativeAnimatedTurboModule.js +2 -2
- package/Libraries/Animated/animations/Animation.js +1 -4
- package/Libraries/Animated/createAnimatedComponent.js +3 -3
- package/Libraries/Animated/nodes/AnimatedObject.js +1 -0
- package/Libraries/Animated/nodes/AnimatedValue.js +30 -22
- package/Libraries/Animated/useAnimatedProps.js +4 -333
- package/Libraries/Animated/useAnimatedValue.js +1 -3
- package/Libraries/AppDelegate/RCTAppDelegate.h +6 -1
- package/Libraries/AppDelegate/RCTAppDelegate.mm +0 -18
- package/Libraries/AppDelegate/RCTAppSetupUtils.h +2 -1
- package/Libraries/AppDelegate/RCTAppSetupUtils.mm +29 -20
- package/Libraries/AppDelegate/RCTArchConfiguratorProtocol.h +4 -0
- package/Libraries/AppDelegate/RCTDefaultReactNativeFactoryDelegate.mm +29 -0
- package/Libraries/AppDelegate/RCTDependencyProvider.h +3 -0
- package/Libraries/AppDelegate/RCTJSRuntimeConfiguratorProtocol.h +22 -0
- package/Libraries/AppDelegate/RCTReactNativeFactory.h +13 -2
- package/Libraries/AppDelegate/RCTReactNativeFactory.mm +74 -8
- package/Libraries/AppDelegate/RCTRootViewFactory.h +21 -0
- package/Libraries/AppDelegate/RCTRootViewFactory.mm +27 -10
- package/Libraries/AppDelegate/RCTUIConfiguratorProtocol.h +4 -0
- package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +6 -8
- package/Libraries/AppState/AppState.js +24 -7
- package/Libraries/AppState/NativeAppState.js +2 -2
- package/Libraries/BatchedBridge/BatchedBridge.js +4 -2
- package/Libraries/BatchedBridge/MessageQueue.js +5 -4
- package/Libraries/BatchedBridge/NativeModules.js +6 -4
- package/Libraries/Blob/Blob.js +5 -5
- package/Libraries/Blob/BlobManager.js +3 -2
- package/Libraries/Blob/BlobRegistry.js +3 -9
- package/Libraries/Blob/File.js +3 -2
- package/Libraries/Blob/FileReader.js +8 -174
- package/Libraries/Blob/FileReader_new.js +231 -0
- package/Libraries/Blob/FileReader_old.js +186 -0
- package/Libraries/Blob/NativeBlobModule.js +2 -2
- package/Libraries/Blob/NativeFileReaderModule.js +2 -2
- package/Libraries/Blob/React-RCTBlob.podspec +1 -1
- package/Libraries/Blob/URL.js +1 -1
- package/Libraries/Blob/URLSearchParams.js +9 -10
- package/Libraries/Blob/URLSearchParams.js.flow +9 -9
- package/Libraries/BugReporting/BugReporting.js +2 -2
- package/Libraries/BugReporting/NativeBugReporting.js +2 -2
- package/Libraries/BugReporting/dumpReactTree.js +2 -2
- package/Libraries/BugReporting/getReactData.js +1 -1
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +1 -1
- package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.js +2 -2
- package/Libraries/Components/AccessibilityInfo/NativeAccessibilityManager.js +2 -2
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.android.js +1 -1
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.ios.js +1 -1
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.js.flow +1 -1
- package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +11 -11
- package/Libraries/Components/ActivityIndicator/ActivityIndicatorViewNativeComponent.js +2 -2
- package/Libraries/Components/Button.js +6 -6
- package/Libraries/Components/Clipboard/Clipboard.js +1 -1
- package/Libraries/Components/Clipboard/NativeClipboard.js +2 -2
- package/Libraries/Components/DrawerAndroid/AndroidDrawerLayoutNativeComponent.js +2 -2
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +14 -100
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +64 -3
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidTypes.js +138 -0
- package/Libraries/Components/Keyboard/Keyboard.js +9 -9
- package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +24 -25
- package/Libraries/Components/Keyboard/NativeKeyboardObserver.js +2 -2
- package/Libraries/Components/LayoutConformance/LayoutConformance.js +7 -5
- package/Libraries/Components/LayoutConformance/LayoutConformanceNativeComponent.js +1 -1
- package/Libraries/Components/Pressable/Pressable.d.ts +1 -1
- package/Libraries/Components/Pressable/Pressable.js +36 -82
- package/Libraries/Components/Pressable/useAndroidRippleForView.js +17 -17
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js +4 -47
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +9 -5
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidNativeComponent.js +2 -2
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidTypes.js +54 -0
- package/Libraries/Components/RefreshControl/AndroidSwipeRefreshLayoutNativeComponent.js +2 -2
- package/Libraries/Components/RefreshControl/PullToRefreshViewNativeComponent.js +2 -2
- package/Libraries/Components/RefreshControl/RefreshControl.js +17 -14
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +2 -1
- package/Libraries/Components/SafeAreaView/RCTSafeAreaViewNativeComponent.js +2 -2
- package/Libraries/Components/SafeAreaView/SafeAreaView.js +1 -1
- package/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js +2 -2
- package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +2 -4
- package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +2 -4
- package/Libraries/Components/ScrollView/ScrollView.js +140 -136
- package/Libraries/Components/ScrollView/ScrollViewCommands.js +3 -3
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +7 -9
- package/Libraries/Components/ScrollView/ScrollViewNativeComponentType.js +5 -2
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +10 -11
- package/Libraries/Components/ScrollView/processDecelerationRate.js +1 -1
- package/Libraries/Components/Sound/NativeSoundManager.js +2 -2
- package/Libraries/Components/Sound/SoundManager.js +1 -1
- package/Libraries/Components/StaticRenderer.js +4 -4
- package/Libraries/Components/StatusBar/NativeStatusBarManagerAndroid.js +2 -2
- package/Libraries/Components/StatusBar/NativeStatusBarManagerIOS.js +2 -2
- package/Libraries/Components/StatusBar/StatusBar.js +57 -31
- package/Libraries/Components/Switch/AndroidSwitchNativeComponent.js +2 -2
- package/Libraries/Components/Switch/Switch.js +74 -45
- package/Libraries/Components/Switch/SwitchNativeComponent.js +2 -2
- package/Libraries/Components/TV/TVEventHandler.js +1 -1
- package/Libraries/Components/TV/TVFocusGuideView.js +3 -3
- package/Libraries/Components/TV/TVTextScrollView.js +2 -2
- package/Libraries/Components/TV/useTVEventHandler.js +1 -1
- package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +33 -35
- package/Libraries/Components/TextInput/InputAccessoryView.js +5 -3
- package/Libraries/Components/TextInput/RCTInputAccessoryViewNativeComponent.js +2 -2
- package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +2 -4
- package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +2 -4
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +5 -2
- package/Libraries/Components/TextInput/TextInput.flow.js +131 -121
- package/Libraries/Components/TextInput/TextInput.js +152 -149
- package/Libraries/Components/TextInput/TextInputNativeCommands.js +1 -1
- package/Libraries/Components/TextInput/TextInputState.js +6 -20
- package/Libraries/Components/ToastAndroid/NativeToastAndroid.js +2 -2
- package/Libraries/Components/ToastAndroid/ToastAndroid.android.js +1 -1
- package/Libraries/Components/ToastAndroid/ToastAndroid.d.ts +68 -6
- package/Libraries/Components/ToastAndroid/ToastAndroid.js +1 -1
- package/Libraries/Components/Touchable/BoundingDimensions.js +1 -1
- package/Libraries/Components/Touchable/PooledClass.js +1 -1
- package/Libraries/Components/Touchable/Position.js +1 -1
- package/Libraries/Components/Touchable/Touchable.js +23 -23
- package/Libraries/Components/Touchable/TouchableBounce.js +6 -6
- package/Libraries/Components/Touchable/TouchableHighlight.js +45 -21
- package/Libraries/Components/Touchable/TouchableNativeFeedback.js +103 -55
- package/Libraries/Components/Touchable/TouchableOpacity.js +57 -15
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +116 -62
- package/Libraries/Components/UnimplementedViews/UnimplementedNativeViewNativeComponent.js +2 -2
- package/Libraries/Components/UnimplementedViews/UnimplementedView.js +11 -3
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +17 -3
- package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -1
- package/Libraries/Components/View/View.js +2 -2
- package/Libraries/Components/View/ViewAccessibility.js +245 -5
- package/Libraries/Components/View/ViewNativeComponent.js +2 -4
- package/Libraries/Components/View/ViewPropTypes.d.ts +14 -14
- package/Libraries/Components/View/ViewPropTypes.js +73 -261
- package/Libraries/Core/Devtools/getDevServer.js +1 -3
- package/Libraries/Core/Devtools/loadBundleFromServer.js +4 -2
- package/Libraries/Core/Devtools/openFileInEditor.js +2 -4
- package/Libraries/Core/Devtools/openURLInBrowser.js +5 -4
- package/Libraries/Core/Devtools/parseErrorStack.js +4 -4
- package/Libraries/Core/Devtools/parseHermesStack.js +2 -2
- package/Libraries/Core/Devtools/symbolicateStackTrace.js +6 -5
- package/Libraries/Core/ExceptionsManager.js +6 -4
- package/Libraries/Core/InitializeCore.js +7 -3
- package/Libraries/Core/NativeExceptionsManager.js +2 -2
- package/Libraries/Core/RawEventEmitter.js +2 -2
- package/Libraries/Core/ReactFiberErrorDialog.js +2 -2
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/ReactNativeVersionCheck.js +2 -4
- package/Libraries/Core/SegmentFetcher/NativeSegmentFetcher.js +2 -2
- package/Libraries/Core/Timers/JSTimers.js +10 -8
- package/Libraries/Core/Timers/NativeTiming.js +2 -2
- package/Libraries/Core/Timers/immediateShim.js +2 -9
- package/Libraries/Core/polyfillPromise.js +1 -1
- package/Libraries/Core/registerCallableModule.js +1 -1
- package/Libraries/Core/setUpAlert.js +1 -1
- package/Libraries/Core/setUpBatchedBridge.js +13 -8
- package/Libraries/Core/setUpDeveloperTools.js +5 -38
- package/Libraries/Core/setUpErrorHandling.js +2 -2
- package/Libraries/Core/setUpReactDevTools.js +26 -6
- package/Libraries/Core/setUpReactRefresh.js +1 -1
- package/Libraries/Core/setUpTimers.js +45 -66
- package/Libraries/Core/setUpXHR.js +11 -8
- package/Libraries/Debugging/DebuggingOverlayNativeComponent.js +2 -2
- package/Libraries/Debugging/DebuggingOverlayRegistry.js +10 -7
- package/Libraries/EventEmitter/NativeEventEmitter.js +8 -2
- package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +7 -5
- package/Libraries/EventEmitter/RCTEventEmitter.js +1 -1
- package/Libraries/EventEmitter/RCTNativeAppEventEmitter.js +1 -1
- package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -2
- package/Libraries/Events/CustomEvent.js +3 -3
- package/Libraries/Events/EventPolyfill.js +2 -2
- package/Libraries/Image/AssetRegistry.js +8 -1
- package/Libraries/Image/AssetSourceResolver.js +4 -4
- package/Libraries/Image/Image.android.js +4 -2
- package/Libraries/Image/Image.ios.js +1 -1
- package/Libraries/Image/Image.js.flow +15 -1
- package/Libraries/Image/ImageBackground.js +2 -2
- package/Libraries/Image/ImageProps.js +109 -39
- package/Libraries/Image/ImageTypes.flow.js +16 -6
- package/Libraries/Image/ImageViewNativeComponent.js +8 -11
- package/Libraries/Image/NativeImageEditor.js +2 -2
- package/Libraries/Image/NativeImageLoaderAndroid.js +2 -2
- package/Libraries/Image/NativeImageLoaderIOS.js +2 -2
- package/Libraries/Image/NativeImageStoreAndroid.js +2 -2
- package/Libraries/Image/NativeImageStoreIOS.js +2 -2
- package/Libraries/Image/RelativeImageStub.js +3 -1
- package/Libraries/Image/TextInlineImageNativeComponent.js +2 -4
- package/Libraries/Image/nativeImageSource.js +3 -3
- package/Libraries/Image/resolveAssetSource.js +4 -2
- package/Libraries/Interaction/FrameRateLogger.js +1 -1
- package/Libraries/Interaction/InteractionManager.js +20 -9
- package/Libraries/Interaction/InteractionManagerStub.js +10 -2
- package/Libraries/Interaction/JSEventLoopWatchdog.js +2 -2
- package/Libraries/Interaction/NativeFrameRateLogger.js +2 -2
- package/Libraries/Interaction/PanResponder.js +49 -46
- package/Libraries/Interaction/TaskQueue.js +4 -4
- package/Libraries/Interaction/TouchHistoryMath.js +27 -1
- package/Libraries/LayoutAnimation/LayoutAnimation.js +20 -6
- package/Libraries/Linking/Linking.d.ts +3 -3
- package/Libraries/Linking/Linking.js +10 -9
- package/Libraries/Linking/NativeIntentAndroid.js +2 -2
- package/Libraries/Linking/NativeLinkingManager.js +2 -2
- package/Libraries/Lists/FillRateHelper.js +4 -4
- package/Libraries/Lists/FlatList.js +30 -30
- package/Libraries/Lists/SectionList.js +10 -10
- package/Libraries/Lists/SectionListModern.js +9 -7
- package/Libraries/Lists/ViewabilityHelper.js +4 -3
- package/Libraries/Lists/VirtualizeUtils.js +3 -5
- package/Libraries/Lists/VirtualizedList.js +6 -6
- package/Libraries/Lists/VirtualizedListContext.js +5 -5
- package/Libraries/Lists/VirtualizedSectionList.js +5 -3
- package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +1 -1
- package/Libraries/LogBox/Data/LogBoxData.js +15 -15
- package/Libraries/LogBox/Data/LogBoxLog.js +51 -29
- package/Libraries/LogBox/Data/parseLogBoxLog.js +10 -10
- package/Libraries/LogBox/LogBox.js +22 -2
- package/Libraries/LogBox/LogBoxInspectorContainer.js +3 -3
- package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -3
- package/Libraries/LogBox/UI/AnsiHighlight.js +7 -3
- package/Libraries/LogBox/UI/LogBoxButton.js +8 -6
- package/Libraries/LogBox/UI/LogBoxInspector.js +1 -1
- package/Libraries/LogBox/UI/LogBoxInspectorBody.js +8 -2
- package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.js +50 -31
- package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +11 -3
- package/Libraries/LogBox/UI/LogBoxInspectorFooterButton.js +2 -0
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +8 -2
- package/Libraries/LogBox/UI/LogBoxInspectorHeaderButton.js +2 -0
- package/Libraries/LogBox/UI/LogBoxInspectorMessageHeader.js +6 -4
- package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.js +5 -3
- package/Libraries/LogBox/UI/LogBoxInspectorSection.js +2 -2
- package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +4 -4
- package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.js +5 -3
- package/Libraries/LogBox/UI/LogBoxInspectorStackFrames.js +2 -2
- package/Libraries/LogBox/UI/LogBoxNotification.js +7 -2
- package/Libraries/LogBox/UI/LogBoxNotificationCountBadge.js +3 -1
- package/Libraries/LogBox/UI/LogBoxNotificationDismissButton.js +2 -0
- package/Libraries/LogBox/UI/LogBoxNotificationMessage.js +4 -1
- package/Libraries/Modal/Modal.js +82 -89
- package/Libraries/Modal/NativeModalManager.js +2 -2
- package/Libraries/Modal/RCTModalHostViewNativeComponent.js +2 -2
- package/Libraries/NativeComponent/BaseViewConfig.android.js +16 -6
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +19 -9
- package/Libraries/NativeComponent/NativeComponentRegistry.js +1 -1
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +5 -1
- package/Libraries/NativeModules/specs/NativeDevMenu.js +2 -2
- package/Libraries/NativeModules/specs/NativeDevSettings.js +2 -2
- package/Libraries/NativeModules/specs/NativeDeviceEventManager.js +2 -2
- package/Libraries/NativeModules/specs/NativeDialogManagerAndroid.js +2 -2
- package/Libraries/NativeModules/specs/NativeLogBox.js +2 -2
- package/Libraries/NativeModules/specs/NativeRedBox.js +2 -2
- package/Libraries/NativeModules/specs/NativeSourceCode.js +2 -2
- package/Libraries/Network/FormData.js +1 -1
- package/Libraries/Network/NativeNetworkingAndroid.js +2 -2
- package/Libraries/Network/NativeNetworkingIOS.js +2 -2
- package/Libraries/Network/RCTDataRequestHandler.mm +17 -3
- package/Libraries/Network/RCTFileRequestHandler.mm +17 -3
- package/Libraries/Network/RCTNetworking.android.js +1 -1
- package/Libraries/Network/RCTNetworking.ios.js +1 -1
- package/Libraries/Network/RCTNetworking.js.flow +1 -1
- package/Libraries/Network/RCTNetworking.mm +1 -1
- package/Libraries/Network/XMLHttpRequest.js +10 -685
- package/Libraries/Network/XMLHttpRequest_new.js +794 -0
- package/Libraries/Network/XMLHttpRequest_old.js +701 -0
- package/Libraries/Network/convertRequestBody.js +7 -4
- package/Libraries/Network/fetch.js +4 -3
- package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +2 -2
- package/Libraries/PermissionsAndroid/PermissionsAndroid.js +65 -63
- package/Libraries/Pressability/HoverState.js +1 -0
- package/Libraries/Pressability/Pressability.js +33 -33
- package/Libraries/Pressability/PressabilityDebug.js +2 -2
- package/Libraries/Pressability/PressabilityPerformanceEventEmitter.js +2 -2
- package/Libraries/Promise.js +2 -2
- package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +2 -2
- package/Libraries/PushNotificationIOS/PushNotificationIOS.js +119 -16
- package/Libraries/ReactNative/AppContainer-dev.js +4 -3
- package/Libraries/ReactNative/AppContainer.js +3 -3
- package/Libraries/ReactNative/AppRegistry.js +4 -4
- package/Libraries/ReactNative/BridgelessUIManager.js +4 -9
- package/Libraries/ReactNative/FabricUIManager.js +22 -10
- package/Libraries/ReactNative/I18nManager.js +4 -3
- package/Libraries/ReactNative/NativeHeadlessJsTaskSupport.js +2 -2
- package/Libraries/ReactNative/NativeI18nManager.js +2 -2
- package/Libraries/ReactNative/NativeUIManager.js +2 -2
- package/Libraries/ReactNative/PaperUIManager.js +6 -6
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +7 -5
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +85 -30
- package/Libraries/ReactNative/ReactNativeFeatureFlags.js +3 -3
- package/Libraries/ReactNative/ReactNativeRuntimeDiagnostics.js +3 -3
- package/Libraries/ReactNative/RendererImplementation.js +12 -5
- package/Libraries/ReactNative/RootTag.js +1 -1
- package/Libraries/ReactNative/UIManager.d.ts +1 -0
- package/Libraries/ReactNative/UIManager.js +3 -3
- package/Libraries/ReactNative/UIManagerProperties.js +1 -1
- package/Libraries/ReactNative/getNativeComponentAttributes.js +10 -9
- package/Libraries/ReactNative/requireNativeComponent.js +3 -2
- package/Libraries/ReactNativeDependencies/Package.swift +26 -0
- package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +30 -10
- package/Libraries/Renderer/shims/ReactNativeTypes.js +40 -89
- package/Libraries/Required/RCTRequired.h +1 -1
- package/Libraries/Settings/NativeSettingsManager.js +2 -2
- package/Libraries/Settings/Settings.ios.js +1 -1
- package/Libraries/Settings/Settings.js +3 -3
- package/Libraries/Share/NativeShareModule.js +2 -2
- package/Libraries/Share/Share.js +11 -4
- package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +1 -1
- package/Libraries/StyleSheet/Rect.js +2 -2
- package/Libraries/StyleSheet/StyleSheet.js +4 -3
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +1 -1
- package/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js +1 -1
- package/Libraries/StyleSheet/flattenStyle.js +1 -1
- package/Libraries/StyleSheet/normalizeColor.js +1 -1
- package/Libraries/StyleSheet/private/_TransformStyle.js +18 -18
- package/Libraries/StyleSheet/processAspectRatio.js +1 -1
- package/Libraries/StyleSheet/processBackgroundImage.js +138 -136
- package/Libraries/StyleSheet/processBoxShadow.js +4 -0
- package/Libraries/StyleSheet/processColor.js +2 -2
- package/Libraries/StyleSheet/processColorArray.js +1 -1
- package/Libraries/StyleSheet/processFilter.js +4 -0
- package/Libraries/StyleSheet/processFontVariant.js +1 -1
- package/Libraries/StyleSheet/processTransform.js +1 -1
- package/Libraries/StyleSheet/setNormalizedColorAlpha.js +1 -1
- package/Libraries/Text/Text.d.ts +1 -1
- package/Libraries/Text/Text.js +19 -17
- package/Libraries/Text/TextAncestor.js +2 -3
- package/Libraries/Text/TextInput/Multiline/RCTUITextView.mm +1 -1
- package/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h +3 -0
- package/Libraries/Text/TextInput/Singleline/RCTUITextField.mm +7 -1
- package/Libraries/Text/TextNativeComponent.js +3 -3
- package/Libraries/Text/TextProps.js +134 -94
- package/Libraries/TurboModule/TurboModuleRegistry.js +1 -1
- package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +2 -2
- package/Libraries/Types/CodegenTypes.js +5 -4
- package/Libraries/Types/CoreEventTypes.js +132 -99
- package/Libraries/Types/ReactDevToolsTypes.js +4 -8
- package/Libraries/UTFSequence.js +4 -3
- package/Libraries/Utilities/Appearance.js +0 -8
- package/Libraries/Utilities/BackHandler.android.js +3 -3
- package/Libraries/Utilities/BackHandler.ios.js +6 -6
- package/Libraries/Utilities/BackHandler.js.flow +9 -7
- package/Libraries/Utilities/DevLoadingView.js +1 -1
- package/Libraries/Utilities/DevSettings.js +15 -1
- package/Libraries/Utilities/DeviceInfo.js +1 -1
- package/Libraries/Utilities/Dimensions.js +5 -0
- package/Libraries/Utilities/FeatureDetection.js +2 -4
- package/Libraries/Utilities/GlobalPerformanceLogger.js +1 -1
- package/Libraries/Utilities/HMRClient.js +7 -35
- package/Libraries/Utilities/HMRClientProdShim.js +1 -2
- package/Libraries/Utilities/NativeAppearance.js +2 -2
- package/Libraries/Utilities/NativeDevLoadingView.js +2 -2
- package/Libraries/Utilities/NativeDeviceInfo.js +2 -2
- package/Libraries/Utilities/NativePlatformConstantsAndroid.js +2 -2
- package/Libraries/Utilities/NativePlatformConstantsIOS.js +2 -2
- package/Libraries/Utilities/Platform.android.js +6 -6
- package/Libraries/Utilities/Platform.ios.js +6 -6
- package/Libraries/Utilities/Platform.js.flow +2 -2
- package/Libraries/Utilities/PlatformTypes.js +181 -0
- package/Libraries/Utilities/PolyfillFunctions.js +3 -5
- package/Libraries/Utilities/RCTLog.js +1 -1
- package/Libraries/Utilities/ReactNativeTestTools.js +6 -6
- package/Libraries/Utilities/SceneTracker.js +1 -1
- package/Libraries/Utilities/__mocks__/GlobalPerformanceLogger.js +2 -2
- package/Libraries/Utilities/binaryToBase64.js +1 -1
- package/Libraries/Utilities/codegenNativeCommands.js +2 -2
- package/Libraries/Utilities/codegenNativeComponent.js +3 -3
- package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +1 -1
- package/Libraries/Utilities/defineLazyObjectProperty.js +1 -1
- package/Libraries/Utilities/differ/deepDiffer.js +6 -6
- package/Libraries/Utilities/differ/insetsDiffer.js +3 -3
- package/Libraries/Utilities/differ/matricesDiffer.js +3 -6
- package/Libraries/Utilities/differ/pointsDiffer.js +3 -3
- package/Libraries/Utilities/differ/sizesDiffer.js +3 -3
- package/Libraries/Utilities/dismissKeyboard.js +3 -2
- package/Libraries/Utilities/infoLog.js +1 -1
- package/Libraries/Utilities/logError.js +1 -1
- package/Libraries/Utilities/mapWithSeparator.js +1 -1
- package/Libraries/Utilities/stringifySafe.js +2 -2
- package/Libraries/Utilities/warnOnce.js +1 -1
- package/Libraries/Vibration/NativeVibration.js +2 -2
- package/Libraries/Vibration/Vibration.js +5 -4
- package/Libraries/WebSocket/NativeWebSocketModule.js +2 -2
- package/Libraries/WebSocket/WebSocket.js +8 -285
- package/Libraries/WebSocket/WebSocketEvent.js +2 -2
- package/Libraries/WebSocket/WebSocketInterceptor.js +39 -11
- package/Libraries/WebSocket/WebSocket_new.js +325 -0
- package/Libraries/WebSocket/WebSocket_old.js +297 -0
- package/Libraries/WebSocket/__mocks__/event-target-shim.js +1 -1
- package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +2 -4
- package/Libraries/vendor/core/ErrorUtils.js +1 -1
- package/Libraries/vendor/emitter/EventEmitter.js +21 -9
- package/README-core.md +0 -3
- package/React/Base/RCTAssert.h +1 -1
- package/React/Base/RCTBridge.mm +14 -1
- package/React/Base/RCTBridgeDelegate.h +0 -9
- package/React/Base/RCTDefines.h +8 -4
- package/React/Base/RCTKeyCommands.m +1 -1
- package/React/Base/RCTModuleData.mm +1 -1
- package/React/Base/RCTRootView.h +2 -2
- package/React/Base/RCTRootViewInternal.h +1 -1
- package/React/Base/RCTUtils.m +1 -1
- package/React/Base/RCTVersion.m +2 -2
- package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.mm +5 -0
- package/React/Base/UIKitProxies/RCTInitialAccessibilityValuesProxy.h +30 -0
- package/React/Base/UIKitProxies/RCTInitialAccessibilityValuesProxy.mm +185 -0
- package/React/Base/UIKitProxies/RCTInitializeUIKitProxies.h +10 -0
- package/React/Base/UIKitProxies/RCTInitializeUIKitProxies.mm +23 -0
- package/React/Base/UIKitProxies/RCTKeyWindowValuesProxy.h +25 -0
- package/React/Base/UIKitProxies/RCTKeyWindowValuesProxy.mm +129 -0
- package/React/Base/UIKitProxies/RCTTraitCollectionProxy.h +26 -0
- package/React/Base/UIKitProxies/RCTTraitCollectionProxy.mm +80 -0
- package/React/Base/UIKitProxies/RCTWindowSafeAreaProxy.h +26 -0
- package/React/Base/UIKitProxies/RCTWindowSafeAreaProxy.mm +70 -0
- package/React/CoreModules/CoreModulesPlugins.h +0 -1
- package/React/CoreModules/CoreModulesPlugins.mm +0 -1
- package/React/CoreModules/RCTAccessibilityManager.mm +11 -9
- package/React/CoreModules/RCTAppearance.mm +4 -7
- package/React/CoreModules/RCTDevMenu.mm +0 -18
- package/React/CoreModules/RCTDevSettings.h +0 -6
- package/React/CoreModules/RCTDevSettings.mm +1 -62
- package/React/CoreModules/RCTDeviceInfo.mm +43 -57
- package/React/CoreModules/RCTEventDispatcher.mm +1 -0
- package/React/CoreModules/RCTKeyboardObserver.mm +6 -0
- package/React/CoreModules/RCTPerfMonitor.mm +5 -0
- package/React/CoreModules/RCTPlatform.mm +19 -21
- package/React/CoreModules/RCTRedBox.mm +1 -1
- package/React/CoreModules/RCTStatusBarManager.mm +6 -0
- package/React/CoreModules/React-CoreModules.podspec +2 -1
- package/React/CxxBridge/RCTCxxBridge.mm +5 -63
- package/React/DevSupport/RCTInspectorDevServerHelper.mm +10 -5
- package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -14
- package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h +0 -2
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI-generated.cpp +201 -178
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +535 -421
- package/React/Fabric/Mounting/ComponentViews/LegacyViewManagerInterop/RCTLegacyViewManagerInteropComponentView.mm +2 -2
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +52 -16
- package/React/Fabric/Mounting/ComponentViews/Text/RCTParagraphComponentView.mm +5 -0
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +12 -8
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.h +2 -0
- package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +34 -2
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +33 -45
- package/React/Fabric/Surface/RCTFabricSurface.mm +1 -0
- package/React/Fabric/Utils/RCTBoxShadow.h +1 -1
- package/React/Fabric/Utils/RCTBoxShadow.mm +10 -10
- package/React/Fabric/Utils/RCTLinearGradient.mm +212 -15
- package/React/Fabric/Utils/RCTViewFinder.h +18 -0
- package/React/Fabric/Utils/RCTViewFinder.mm +34 -0
- package/React/I18n/FBXXHashUtils.h +48 -30
- package/React/I18n/strings/nb.lproj/fbt_language_pack.bin +0 -0
- package/React/I18n/strings/zh-Hant-HK.lproj/fbt_language_pack.bin +0 -0
- package/React/Inspector/RCTCxxInspectorWebSocketAdapter.mm +8 -11
- package/React/React-RCTFBReactNativeSpec.podspec +1 -6
- package/React/React-RCTFabric.podspec +3 -5
- package/React/Runtime/RCTHermesInstanceFactory.h +20 -0
- package/React/Runtime/RCTHermesInstanceFactory.mm +20 -0
- package/React/Runtime/RCTJscInstanceFactory.h +20 -0
- package/React/Runtime/RCTJscInstanceFactory.mm +20 -0
- package/React/Runtime/React-RCTRuntime.podspec +85 -0
- package/React/Views/ScrollView/RCTScrollView.m +2 -3
- package/React-Core.podspec +9 -8
- package/ReactAndroid/README.md +1 -1
- package/ReactAndroid/api/ReactAndroid.api +142 -570
- package/ReactAndroid/build.gradle.kts +64 -53
- package/ReactAndroid/external-artifacts/build.gradle.kts +37 -0
- package/ReactAndroid/gradle.properties +4 -1
- package/ReactAndroid/hermes-engine/build.gradle.kts +13 -12
- package/ReactAndroid/publish.gradle +1 -1
- package/ReactAndroid/src/main/java/com/facebook/annotationprocessors/common/ProcessorBase.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/debug/debugoverlay/model/DebugOverlayTag.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/hermes/instrumentation/HermesMemoryDumper.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutor.kt +55 -0
- package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutorFactory.kt +40 -0
- package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.kt +185 -0
- package/ReactAndroid/src/main/java/com/facebook/react/MemoryPressureRouter.java +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +9 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/ReactHost.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +0 -20
- package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageLogger.kt +3 -4
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNode.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeWithUpdateableConfig.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/DecayAnimation.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/InterpolationAnimatedNode.kt +9 -13
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ModulusAnimatedNode.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java +15 -0
- package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java +25 -1
- package/ReactAndroid/src/main/java/com/facebook/react/animated/PropsAnimatedNode.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/animated/StyleAnimatedNode.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TrackingAnimatedNode.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/animated/TransformAnimatedNode.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/animated/ValueAnimatedNode.kt +8 -9
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CallbackImpl.java +3 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CatalystInstance.kt +4 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxCallbackImpl.kt +21 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{CxxModuleWrapper.java → CxxModuleWrapper.kt} +5 -8
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{DefaultJSExceptionHandler.java → DefaultJSExceptionHandler.kt} +6 -8
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DimensionPropConverter.kt +27 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/InvalidIteratorException.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSBundleLoader.java +0 -15
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArgumentsParseException.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ObjectAlreadyConsumedException.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/Promise.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactBridge.kt +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/{ReactMarkerConstants.java → ReactMarkerConstants.kt} +5 -19
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactModuleWithSpec.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactSoftExceptionLogger.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeArray.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeMap.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeExecutor.kt +14 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeScheduler.kt +14 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManagerProvider.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/{MessageQueueThread.java → MessageQueueThread.kt} +24 -31
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadHandler.kt +25 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadImpl.kt +186 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/{MessageQueueThreadPerfStats.java → MessageQueueThreadPerfStats.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadSpec.kt +42 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/{QueueThreadExceptionHandler.java → QueueThreadExceptionHandler.kt} +4 -5
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfiguration.kt +30 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationImpl.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationSpec.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/ReleaseLevel.kt +18 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/LegacyArchitecture.kt +24 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/LegacyArchitectureLogLevel.kt +22 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/build/ReactBuildConfig.kt +10 -0
- package/ReactAndroid/src/main/java/com/facebook/react/common/futures/SimpleSettableFuture.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/ReadableMapBuffer.kt +14 -35
- package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/WritableMapBuffer.kt +0 -6
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultNewArchitectureEntryPoint.kt +21 -14
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHost.kt +135 -8
- package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactNativeHost.kt +24 -10
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgeDevSupportManager.java +9 -73
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.java +13 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevSupportManagerFactory.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevInternalSettings.kt +0 -7
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java +0 -35
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSettingsActivity.kt +3 -2
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.java +1 -36
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportSoLoader.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/{HMRClient.java → HMRClient.kt} +16 -10
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/IInspectorPackagerConnection.kt +16 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/InspectorFlags.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/JSDebuggerWebSocketClient.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PackagerStatusCheck.kt +96 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PausedInDebuggerOverlayDialogManager.kt +70 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PerftestDevSupportManager.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReactInstanceDevHelper.java +0 -5
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxContentView.kt +261 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxDialogSurfaceDelegate.kt +159 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReleaseDevSupportManager.kt +42 -47
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkHelper.kt +88 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener.kt +29 -0
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevSupportManager.kt +0 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +25 -16
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerBinding.kt +12 -14
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.kt +73 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/SurfaceHandlerBinding.kt +91 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventBeatManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventEmitterWrapper.kt +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +4 -10
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DestroyUnmountedViewMountItem.kt +3 -6
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DispatchIntCommandMountItem.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DispatchStringCommandMountItem.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEvent.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEventMountItem.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/internal/AndroidChoreographerProvider.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +45 -57
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsAccessor.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +81 -101
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +17 -21
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +17 -21
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +91 -113
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android.kt +37 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android.kt +27 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Stable_Android.kt +20 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +17 -21
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeNewArchitectureFeatureFlagsDefaults.kt +0 -7
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModulePerfLogger.kt +70 -0
- package/ReactAndroid/src/main/java/com/facebook/react/module/processing/ReactModuleSpecProcessor.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/accessibilityinfo/AccessibilityInfoModule.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/appstate/AppStateModule.kt +12 -12
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobCollector.kt +31 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/camera/ImageStoreManager.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DevMenuModule.kt +0 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DevSettingsModule.kt +0 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/SourceCodeModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/interfaces/DeveloperSettings.kt +0 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/deviceinfo/DeviceInfoModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/devloading/DevLoadingModule.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/FrescoModule.kt +1 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/SystraceRequestListener.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager/I18nManagerModule.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.kt +12 -20
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/{ProgressListener.java → CustomClientBuilder.kt} +5 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/{HeaderUtil.java → HeaderUtil.kt} +15 -13
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkInterceptorCreator.kt +18 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpClientFactory.kt +14 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpClientProvider.kt +79 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/{OkHttpClientFactory.java → ProgressListener.kt} +3 -6
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressRequestBody.kt +80 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressiveStringDecoder.kt +85 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/RequestBodyUtil.kt +179 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ResponseUtil.kt +132 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/permissions/PermissionsModule.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/modules/share/ShareModule.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/modules/toast/ToastModule.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/NotificationOnlyHandler.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/{RequestHandler.java → RequestHandler.kt} +3 -5
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/RequestOnlyHandler.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/{Responder.java → Responder.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactLegacyArchitectureProcessor.kt +48 -0
- package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java +31 -3
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessCatalystInstance.kt +10 -10
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/JSTimerExecutor.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.java +13 -50
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImplDevHelper.kt +0 -5
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostInspectorTarget.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +12 -15
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Executors.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/TaskCompletionSource.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/UnobservedErrorNotifier.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/soloader/OpenSourceMergedSoMapping.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +17 -41
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.kt +4 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BlendModeHelper.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ComponentNameResolver.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ComponentNameResolverBinding.kt +1 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/FilterHelper.kt +18 -35
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/GuardedFrameCallback.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSPointerDispatcher.java +6 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSTouchDispatcher.java +0 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutDirectionUtil.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LengthPercentage.kt +8 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeKind.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAccessibilityDelegate.java +399 -625
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroup.kt +52 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactCompoundView.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactOverflowViewWithInset.java → ReactOverflowViewWithInset.kt} +10 -10
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactPointerEventsView.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactShadowNodeImpl.java +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactStage.kt +36 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactYogaConfigProvider.kt +6 -11
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactZIndexedViewGroup.java → ReactZIndexedViewGroup.kt} +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/RootViewManager.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/SimpleViewManager.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{StateWrapper.java → StateWrapper.kt} +9 -13
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIBlock.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIConstantsProviderBinding.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{UIManagerModuleListener.java → UIManagerModuleListener.kt} +4 -7
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManager.java +34 -16
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerDelegate.kt +28 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerPropertyUpdater.kt +189 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerResolver.kt +20 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/common/ViewUtil.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BorderDrawable.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CSSBackgroundDrawable.java +18 -12
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CompositeBackgroundDrawable.kt +141 -158
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/InsetBoxShadowDrawable.kt +4 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutlineDrawable.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutsetBoxShadowDrawable.kt +3 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlackHoleEventDispatcher.kt +15 -23
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.kt +10 -9
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/SynchronousEventReceiver.kt +5 -4
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEvent.kt +2 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/AnimatedPropertyType.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/InterpolatorType.kt +6 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutAnimationController.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/{LayoutAnimationListener.java → LayoutAnimationListener.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/{LayoutHandlingAnimation.java → LayoutHandlingAnimation.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutUpdateAnimation.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/SimpleSpringInterpolator.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderColors.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderInsets.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderRadiusStyle.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Gradient.kt +2 -19
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LinearGradient.kt +231 -5
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LogicalEdge.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Overflow.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/util/ExceptionDataHelper.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/util/RCTLog.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlay.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager.kt +9 -9
- package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/TraceUpdate.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerClosedEvent.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerOpenedEvent.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerSlideEvent.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerStateChangedEvent.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/MultiPostprocessor.kt +4 -4
- package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt +36 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaView.kt +1 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewManager.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactAccessibleScrollView.kt +19 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerLegacyView.kt +11 -10
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +2 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +3 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewAccessibilityDelegate.kt +6 -10
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.kt +7 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/VelocityHelper.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/RefreshEvent.kt +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitch.kt +6 -6
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchEvent.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchManager.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextManager.kt +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +26 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewAccessibilityDelegate.kt +335 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewManager.java +17 -10
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactVirtualTextViewManager.kt +5 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageShadowNode.java +10 -5
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageSpan.java +20 -19
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/ReactTextInlineImageShadowNode.kt +21 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactClickableSpan.kt +8 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/{ContentSizeWatcher.java → ContentSizeWatcher.kt} +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java +41 -11
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/{ScrollWatcher.java → ScrollWatcher.kt} +2 -2
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/{SelectionWatcher.java → SelectionWatcher.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager.kt +5 -6
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.java +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +16 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ViewGroupClickEvent.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/WindowUtil.kt +3 -3
- package/ReactAndroid/src/main/java/com/facebook/systrace/SystraceMessage.kt +1 -1
- package/ReactAndroid/src/main/jni/CMakeLists.txt +61 -54
- package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocketDelegate.cpp +10 -1
- package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocketDelegate.h +2 -0
- package/ReactAndroid/src/main/jni/react/fabric/CMakeLists.txt +17 -16
- package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +1 -7
- package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.cpp +1 -2
- package/ReactAndroid/src/main/jni/react/fabric/SurfaceHandlerBinding.cpp +3 -3
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +108 -136
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +23 -29
- package/ReactAndroid/src/main/jni/react/jni/CMakeLists.txt +1 -1
- package/ReactAndroid/src/main/jni/react/jni/OnLoad.cpp +0 -37
- package/ReactAndroid/src/main/jni/react/mapbuffer/CMakeLists.txt +1 -1
- package/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/JReadableMapBuffer.cpp +4 -8
- package/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/JReadableMapBuffer.h +2 -4
- package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/CMakeLists.txt +1 -0
- package/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt +1 -0
- package/ReactAndroid/src/main/jni/react/uimanager/CMakeLists.txt +2 -2
- package/ReactCommon/React-Fabric.podspec +11 -6
- package/ReactCommon/React-FabricComponents.podspec +4 -8
- package/ReactCommon/React-FabricImage.podspec +2 -6
- package/ReactCommon/ReactCommon.podspec +1 -1
- package/ReactCommon/cxxreact/React-cxxreact.podspec +2 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
- package/ReactCommon/cxxreact/TraceSection.h +7 -4
- package/ReactCommon/hermes/React-hermes.podspec +4 -2
- package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeSamplingProfileSerializer.cpp +168 -0
- package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeSamplingProfileSerializer.h +22 -0
- package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeTargetDelegate.cpp +34 -0
- package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeTargetDelegate.h +6 -0
- package/ReactCommon/jsi/React-jsi.podspec +1 -1
- package/ReactCommon/jsi/jsi/decorator.h +16 -0
- package/ReactCommon/jsi/jsi/jsi.cpp +58 -0
- package/ReactCommon/jsi/jsi/jsi.h +34 -0
- package/ReactCommon/jsi/jsi/test/testlib.cpp +58 -8
- package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +2 -2
- package/ReactCommon/jsiexecutor/jsireact/JSINativeModules.cpp +5 -5
- package/ReactCommon/jsinspector-modern/CMakeLists.txt +2 -1
- package/ReactCommon/jsinspector-modern/FallbackRuntimeTargetDelegate.cpp +14 -0
- package/ReactCommon/jsinspector-modern/FallbackRuntimeTargetDelegate.h +6 -0
- package/ReactCommon/jsinspector-modern/HostAgent.cpp +17 -0
- package/ReactCommon/jsinspector-modern/HostTarget.cpp +8 -1
- package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +11 -11
- package/ReactCommon/jsinspector-modern/InspectorFlags.h +6 -0
- package/ReactCommon/jsinspector-modern/InspectorPackagerConnection.cpp +15 -1
- package/ReactCommon/jsinspector-modern/InspectorPackagerConnectionImpl.h +2 -0
- package/ReactCommon/jsinspector-modern/InstanceAgent.cpp +20 -0
- package/ReactCommon/jsinspector-modern/InstanceAgent.h +19 -2
- package/ReactCommon/jsinspector-modern/NetworkIOAgent.cpp +14 -3
- package/ReactCommon/jsinspector-modern/NetworkIOAgent.h +2 -2
- package/ReactCommon/jsinspector-modern/RuntimeAgent.cpp +16 -0
- package/ReactCommon/jsinspector-modern/RuntimeAgent.h +23 -0
- package/ReactCommon/jsinspector-modern/RuntimeTarget.cpp +36 -0
- package/ReactCommon/jsinspector-modern/RuntimeTarget.h +60 -2
- package/ReactCommon/jsinspector-modern/TracingAgent.cpp +67 -21
- package/ReactCommon/jsinspector-modern/TracingAgent.h +20 -0
- package/ReactCommon/jsinspector-modern/WebSocketInterfaces.h +7 -1
- package/ReactCommon/jsinspector-modern/tests/HostTargetTest.cpp +2 -0
- package/ReactCommon/jsinspector-modern/tests/InspectorMocks.h +7 -0
- package/ReactCommon/jsinspector-modern/tests/InspectorPackagerConnectionTest.cpp +8 -4
- package/ReactCommon/jsinspector-modern/tests/JsiIntegrationTest.cpp +3 -2
- package/ReactCommon/jsinspector-modern/tests/utils/InspectorFlagOverridesGuard.cpp +5 -0
- package/ReactCommon/jsinspector-modern/tests/utils/InspectorFlagOverridesGuard.h +1 -0
- package/ReactCommon/jsinspector-modern/tracing/CMakeLists.txt +1 -0
- package/ReactCommon/jsinspector-modern/tracing/EventLoopTaskReporter.cpp +49 -0
- package/ReactCommon/jsinspector-modern/tracing/EventLoopTaskReporter.h +31 -0
- package/ReactCommon/jsinspector-modern/tracing/InstanceTracingProfile.h +30 -0
- package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.cpp +229 -79
- package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.h +64 -55
- package/ReactCommon/jsinspector-modern/tracing/ProfileTreeNode.h +111 -0
- package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +1 -0
- package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfile.h +163 -0
- package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfileTraceEventSerializer.cpp +231 -0
- package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfileTraceEventSerializer.h +30 -0
- package/ReactCommon/jsinspector-modern/tracing/TraceEvent.h +65 -0
- package/ReactCommon/jsinspector-modern/tracing/TraceEventProfile.h +157 -0
- package/ReactCommon/jsinspector-modern/tracing/tests/ProfileTreeNodeTest.cpp +58 -0
- package/ReactCommon/jsitooling/CMakeLists.txt +30 -0
- package/ReactCommon/jsitooling/React-jsitooling.podspec +66 -0
- package/ReactCommon/{react → jsitooling/react}/runtime/JSRuntimeFactory.h +4 -0
- package/ReactCommon/jsitooling/react/runtime/JSRuntimeFactoryCAPI.cpp +15 -0
- package/ReactCommon/jsitooling/react/runtime/JSRuntimeFactoryCAPI.h +26 -0
- package/ReactCommon/oscompat/CMakeLists.txt +14 -0
- package/ReactCommon/oscompat/OSCompat.h +18 -0
- package/ReactCommon/oscompat/OSCompatPosix.cpp +63 -0
- package/ReactCommon/oscompat/OSCompatWindows.cpp +26 -0
- package/ReactCommon/oscompat/React-oscompat.podspec +31 -0
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +33 -41
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +39 -49
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +152 -188
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +20 -24
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +30 -38
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDynamicProvider.h +67 -85
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +10 -12
- package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +4 -9
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +9 -0
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.h +22 -2
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +48 -24
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h +7 -0
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm +86 -31
- package/ReactCommon/react/nativemodule/defaults/DefaultTurboModules.cpp +2 -2
- package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +1 -5
- package/ReactCommon/react/nativemodule/dom/CMakeLists.txt +2 -2
- package/ReactCommon/react/nativemodule/dom/NativeDOM.cpp +214 -107
- package/ReactCommon/react/nativemodule/dom/NativeDOM.h +55 -38
- package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +3 -5
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +39 -49
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +17 -21
- package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +3 -5
- package/ReactCommon/react/nativemodule/idlecallbacks/CMakeLists.txt +1 -1
- package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +3 -5
- package/ReactCommon/react/nativemodule/intersectionobserver/NativeIntersectionObserver.h +1 -1
- package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +3 -5
- package/ReactCommon/react/nativemodule/mutationobserver/NativeMutationObserver.cpp +1 -2
- package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +2 -7
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboCxxModule.h +1 -10
- package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboCxxModule.mm +1 -24
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +2 -61
- package/ReactCommon/react/performance/timeline/CMakeLists.txt +1 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +95 -11
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +4 -1
- package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -0
- package/ReactCommon/react/renderer/animations/CMakeLists.txt +10 -10
- package/ReactCommon/react/renderer/animations/utils.h +2 -6
- package/ReactCommon/react/renderer/attributedstring/CMakeLists.txt +8 -8
- package/ReactCommon/react/renderer/attributedstring/conversions.h +107 -0
- package/ReactCommon/react/renderer/attributedstring/primitives.h +21 -1
- package/ReactCommon/react/renderer/componentregistry/CMakeLists.txt +6 -6
- package/ReactCommon/react/renderer/componentregistry/native/CMakeLists.txt +2 -2
- package/ReactCommon/react/renderer/components/image/CMakeLists.txt +5 -5
- package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/CMakeLists.txt +1 -1
- package/ReactCommon/react/renderer/components/modal/CMakeLists.txt +6 -6
- package/ReactCommon/react/renderer/components/progressbar/CMakeLists.txt +5 -5
- package/ReactCommon/react/renderer/components/root/CMakeLists.txt +3 -3
- package/ReactCommon/react/renderer/components/root/RootShadowNode.cpp +5 -0
- package/ReactCommon/react/renderer/components/root/RootShadowNode.h +2 -0
- package/ReactCommon/react/renderer/components/safeareaview/CMakeLists.txt +5 -5
- package/ReactCommon/react/renderer/components/scrollview/CMakeLists.txt +4 -4
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.cpp +1 -1
- package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.h +1 -0
- package/ReactCommon/react/renderer/components/switch/CMakeLists.txt +5 -5
- package/ReactCommon/react/renderer/components/text/CMakeLists.txt +7 -7
- package/ReactCommon/react/renderer/components/textinput/BaseTextInputShadowNode.h +2 -4
- package/ReactCommon/react/renderer/components/textinput/CMakeLists.txt +10 -10
- package/ReactCommon/react/renderer/components/textinput/TextInputEventEmitter.cpp +2 -0
- package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.cpp +8 -8
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/primitives.h +7 -0
- package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/propsConversions.h +7 -0
- package/ReactCommon/react/renderer/components/unimplementedview/CMakeLists.txt +3 -3
- package/ReactCommon/react/renderer/components/view/BaseViewProps.cpp +3 -1
- package/ReactCommon/react/renderer/components/view/BoxShadowPropsConversions.h +276 -0
- package/ReactCommon/react/renderer/components/view/CMakeLists.txt +4 -3
- package/ReactCommon/react/renderer/components/view/CSSConversions.h +96 -0
- package/ReactCommon/react/renderer/components/view/FilterPropsConversions.h +386 -0
- package/ReactCommon/react/renderer/components/view/YogaStylableProps.cpp +227 -222
- package/ReactCommon/react/renderer/components/view/conversions.h +185 -265
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +798 -0
- package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.h +6 -0
- package/ReactCommon/react/renderer/components/view/tests/ConversionsTest.cpp +239 -0
- package/ReactCommon/react/renderer/consistency/CMakeLists.txt +3 -3
- package/ReactCommon/react/renderer/core/CMakeLists.txt +8 -8
- package/ReactCommon/react/renderer/core/ConcreteComponentDescriptor.h +2 -5
- package/ReactCommon/react/renderer/core/ConcreteShadowNode.h +10 -0
- package/ReactCommon/react/renderer/core/EventBeat.cpp +8 -0
- package/ReactCommon/react/renderer/core/EventBeat.h +10 -0
- package/ReactCommon/react/renderer/core/EventDispatcher.cpp +1 -6
- package/ReactCommon/react/renderer/core/EventQueue.cpp +8 -1
- package/ReactCommon/react/renderer/core/LayoutMetrics.h +16 -0
- package/ReactCommon/react/renderer/core/LayoutableShadowNode.cpp +12 -5
- package/ReactCommon/react/renderer/core/Props.cpp +9 -0
- package/ReactCommon/react/renderer/core/Props.h +13 -0
- package/ReactCommon/react/renderer/core/RawProps.cpp +0 -16
- package/ReactCommon/react/renderer/core/RawProps.h +6 -5
- package/ReactCommon/react/renderer/core/ShadowNode.cpp +1 -2
- package/ReactCommon/react/renderer/core/ShadowNodeFamily.cpp +11 -5
- package/ReactCommon/react/renderer/core/ShadowNodeFamily.h +4 -7
- package/ReactCommon/react/renderer/core/tests/FindNodeAtPointTest.cpp +34 -0
- package/ReactCommon/react/renderer/core/tests/LayoutableShadowNodeTest.cpp +282 -1
- package/ReactCommon/react/renderer/core/tests/ShadowNodeTest.cpp +12 -44
- package/ReactCommon/react/renderer/css/CMakeLists.txt +36 -0
- package/ReactCommon/react/renderer/css/CSSAngle.h +42 -0
- package/ReactCommon/react/renderer/css/CSSColor.h +59 -0
- package/ReactCommon/react/renderer/css/CSSColorFunction.h +446 -0
- package/ReactCommon/react/renderer/css/CSSCompoundDataType.h +121 -0
- package/ReactCommon/react/renderer/css/CSSDataType.h +81 -0
- package/ReactCommon/react/renderer/css/CSSDummy.cpp +14 -0
- package/ReactCommon/react/renderer/css/CSSFilter.h +341 -0
- package/ReactCommon/react/renderer/css/CSSFontVariant.h +65 -0
- package/ReactCommon/react/renderer/css/CSSHexColor.h +104 -0
- package/ReactCommon/react/renderer/css/CSSKeyword.h +368 -0
- package/ReactCommon/react/renderer/css/CSSLength.h +58 -0
- package/ReactCommon/react/renderer/css/CSSLengthPercentage.h +21 -0
- package/ReactCommon/react/renderer/css/CSSList.h +77 -0
- package/ReactCommon/react/renderer/css/CSSNamedColor.h +328 -0
- package/ReactCommon/react/renderer/css/CSSNumber.h +40 -0
- package/ReactCommon/react/renderer/css/CSSPercentage.h +40 -0
- package/ReactCommon/react/renderer/css/CSSRatio.h +70 -0
- package/ReactCommon/react/renderer/css/CSSShadow.h +152 -0
- package/ReactCommon/react/renderer/css/CSSSyntaxParser.h +174 -81
- package/ReactCommon/react/renderer/css/CSSTokenizer.h +6 -4
- package/ReactCommon/react/renderer/css/CSSTransform.h +498 -0
- package/ReactCommon/react/renderer/css/CSSTransformOrigin.h +226 -0
- package/ReactCommon/react/renderer/css/CSSValueParser.h +151 -234
- package/ReactCommon/react/renderer/css/CSSZero.h +41 -0
- package/ReactCommon/react/renderer/css/React-renderercss.podspec +50 -0
- package/ReactCommon/react/renderer/css/tests/CSSAngleTest.cpp +44 -0
- package/ReactCommon/react/renderer/css/tests/CSSColorTest.cpp +493 -0
- package/ReactCommon/react/renderer/css/tests/CSSFilterTest.cpp +577 -0
- package/ReactCommon/react/renderer/css/tests/CSSFontVariantTest.cpp +75 -0
- package/ReactCommon/react/renderer/css/tests/CSSKeywordTest.cpp +52 -0
- package/ReactCommon/react/renderer/css/tests/CSSLengthPercentageTest.cpp +37 -0
- package/ReactCommon/react/renderer/css/tests/CSSLengthTest.cpp +58 -0
- package/ReactCommon/react/renderer/css/tests/CSSListTest.cpp +153 -0
- package/ReactCommon/react/renderer/css/tests/CSSNumberLengthTest.cpp +21 -0
- package/ReactCommon/react/renderer/css/tests/CSSNumberTest.cpp +30 -0
- package/ReactCommon/react/renderer/css/tests/CSSRatioTest.cpp +68 -0
- package/ReactCommon/react/renderer/css/tests/CSSShadowTest.cpp +339 -0
- package/ReactCommon/react/renderer/css/tests/CSSSyntaxParserTest.cpp +338 -45
- package/ReactCommon/react/renderer/css/tests/CSSTokenizerTest.cpp +10 -0
- package/ReactCommon/react/renderer/css/tests/CSSTransformOriginTest.cpp +428 -0
- package/ReactCommon/react/renderer/css/tests/CSSTransformTest.cpp +701 -0
- package/ReactCommon/react/renderer/css/tests/CSSValueParserTest.cpp +39 -392
- package/ReactCommon/react/renderer/debug/CMakeLists.txt +4 -4
- package/ReactCommon/react/renderer/debug/DebugStringConvertible.h +1 -1
- package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +1 -1
- package/ReactCommon/react/renderer/dom/CMakeLists.txt +6 -6
- package/ReactCommon/react/renderer/dom/DOM.cpp +8 -6
- package/ReactCommon/react/renderer/dom/DOM.h +6 -0
- package/ReactCommon/react/renderer/element/CMakeLists.txt +6 -6
- package/ReactCommon/react/renderer/graphics/CMakeLists.txt +4 -4
- package/ReactCommon/react/renderer/graphics/Filter.h +0 -1
- package/ReactCommon/react/renderer/graphics/LinearGradient.h +8 -1
- package/ReactCommon/react/renderer/graphics/Point.h +23 -17
- package/ReactCommon/react/renderer/graphics/React-graphics.podspec +2 -6
- package/ReactCommon/react/renderer/graphics/Transform.h +2 -0
- package/ReactCommon/react/renderer/graphics/ValueUnit.h +4 -0
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.h +9 -5
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.mm +112 -14
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/PlatformColorParser.mm +1 -1
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/RCTPlatformColorUtils.h +7 -1
- package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/RCTPlatformColorUtils.mm +1 -0
- package/ReactCommon/react/renderer/graphics/tests/PointTest.cpp +87 -0
- package/ReactCommon/react/renderer/imagemanager/CMakeLists.txt +9 -9
- package/ReactCommon/react/renderer/leakchecker/CMakeLists.txt +5 -5
- package/ReactCommon/react/renderer/mapbuffer/CMakeLists.txt +4 -4
- package/ReactCommon/react/renderer/mounting/CMakeLists.txt +10 -9
- package/ReactCommon/react/renderer/mounting/Differentiator.cpp +140 -341
- package/ReactCommon/react/renderer/mounting/Differentiator.h +0 -77
- package/ReactCommon/react/renderer/mounting/ShadowTree.cpp +2 -21
- package/ReactCommon/react/renderer/mounting/ShadowTree.h +0 -2
- package/ReactCommon/react/renderer/mounting/internal/CullingContext.cpp +48 -0
- package/ReactCommon/react/renderer/mounting/internal/CullingContext.h +29 -0
- package/ReactCommon/react/renderer/mounting/internal/ShadowViewNodePair.h +62 -0
- package/ReactCommon/react/renderer/mounting/internal/TinyMap.h +143 -0
- package/ReactCommon/react/renderer/mounting/internal/sliceChildShadowNodeViewPairs.cpp +191 -0
- package/ReactCommon/react/renderer/mounting/internal/sliceChildShadowNodeViewPairs.h +53 -0
- package/ReactCommon/react/renderer/mounting/stubs/StubView.cpp +2 -0
- package/ReactCommon/react/renderer/mounting/stubs/StubView.h +1 -0
- package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.cpp +127 -0
- package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.h +15 -0
- package/ReactCommon/react/renderer/mounting/stubs/stubs.cpp +4 -2
- package/ReactCommon/react/renderer/mounting/tests/ShadowTreeLifeCycleTest.cpp +11 -9
- package/ReactCommon/react/renderer/observers/events/CMakeLists.txt +7 -7
- package/ReactCommon/react/renderer/runtimescheduler/CMakeLists.txt +8 -7
- package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +2 -6
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.cpp +1 -2
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +3 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.h +1 -1
- package/ReactCommon/react/renderer/scheduler/CMakeLists.txt +12 -12
- package/ReactCommon/react/renderer/scheduler/Scheduler.cpp +8 -13
- package/ReactCommon/react/renderer/scheduler/SurfaceHandler.cpp +3 -3
- package/ReactCommon/react/renderer/scheduler/SurfaceHandler.h +3 -3
- package/ReactCommon/react/renderer/telemetry/CMakeLists.txt +6 -6
- package/ReactCommon/react/renderer/textlayoutmanager/CMakeLists.txt +13 -13
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.h +24 -3
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.mm +1 -43
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontProperties.h +20 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontUtils.mm +140 -0
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +16 -5
- package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextPrimitivesConversions.h +2 -2
- package/ReactCommon/react/renderer/uimanager/CMakeLists.txt +14 -14
- package/ReactCommon/react/renderer/uimanager/UIManager.cpp +4 -3
- package/ReactCommon/react/renderer/uimanager/UIManager.h +3 -3
- package/ReactCommon/react/renderer/uimanager/consistency/CMakeLists.txt +6 -6
- package/ReactCommon/react/renderer/uimanager/primitives.h +3 -0
- package/ReactCommon/react/runtime/CMakeLists.txt +1 -0
- package/ReactCommon/react/runtime/React-RuntimeCore.podspec +2 -6
- package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +5 -8
- package/ReactCommon/react/runtime/ReactInstance.cpp +0 -8
- package/ReactCommon/react/runtime/TimerManager.cpp +0 -58
- package/ReactCommon/react/runtime/hermes/HermesInstance.cpp +1 -2
- package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +4 -2
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +3 -1
- package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +33 -0
- package/ReactCommon/react/utils/React-utils.podspec +1 -5
- package/ReactCommon/react/utils/TemplateStringLiteral.h +35 -0
- package/ReactCommon/react/utils/fnv1a.h +3 -4
- package/ReactCommon/react/utils/iequals.h +34 -0
- package/ReactCommon/react/utils/toLower.h +22 -0
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfettoLogger.cpp +31 -4
- package/ReactCommon/reactperflogger/reactperflogger/ReactPerfettoLogger.h +2 -0
- package/ReactCommon/runtimeexecutor/ReactCommon/RuntimeExecutor.h +22 -0
- package/cli.js +11 -2
- package/flow/jest.js +14 -14
- package/gradle/libs.versions.toml +2 -2
- package/index.js +176 -263
- package/jest/mockScrollView.js +1 -1
- package/jest/setup.js +314 -264
- package/package.json +18 -15
- package/react-native.config.js +24 -23
- package/scripts/cocoapods/codegen.rb +4 -15
- package/scripts/cocoapods/codegen_utils.rb +4 -267
- package/scripts/cocoapods/jsengine.rb +17 -7
- package/scripts/cocoapods/new_architecture.rb +6 -36
- package/scripts/cocoapods/utils.rb +16 -5
- package/scripts/codegen/generate-artifacts-executor.js +165 -29
- package/scripts/codegen/templates/RCTAppDependencyProviderMM.template +9 -29
- package/scripts/codegen/templates/RCTModuleProvidersH.template +16 -0
- package/scripts/codegen/templates/RCTModuleProvidersMM.template +51 -0
- package/scripts/codegen/templates/RCTModulesConformingToProtocolsProviderMM.template +30 -9
- package/scripts/codegen/templates/RCTThirdPartyComponentsProviderMM.template +9 -2
- package/scripts/codegen/templates/ReactCodegen.podspec.template +99 -0
- package/scripts/hermes/hermes-utils.js +1 -1
- package/scripts/react_native_pods.rb +47 -3
- package/sdks/.hermesversion +1 -1
- package/sdks/hermesc/linux64-bin/hermesc +0 -0
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/sdks/hermesc/win64-bin/msvcp140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140_1.dll +0 -0
- package/src/private/animated/createAnimatedPropsHook.js +360 -0
- package/src/private/animated/{useAnimatedPropsMemo.js → createAnimatedPropsMemoHook.js} +84 -32
- package/src/private/components/HScrollViewNativeComponents.js +2 -2
- package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +2 -2
- package/src/private/components/VScrollViewNativeComponents.js +1 -1
- package/src/private/debugging/ReactDevToolsSettingsManager.android.js +1 -1
- package/src/private/devmenu/DevMenu.js +2 -2
- package/src/private/featureflags/ReactNativeFeatureFlags.js +53 -75
- package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +5 -7
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +10 -12
- package/{Libraries/Inspector → src/private/inspector}/BorderBox.js +3 -3
- package/{Libraries/Inspector → src/private/inspector}/BoxInspector.js +9 -6
- package/{Libraries/Inspector → src/private/inspector}/ElementBox.js +9 -8
- package/{Libraries/Inspector → src/private/inspector}/ElementProperties.js +20 -15
- package/{Libraries/Inspector → src/private/inspector}/Inspector.js +21 -18
- package/{Libraries/Inspector → src/private/inspector}/InspectorOverlay.js +11 -10
- package/{Libraries/Inspector → src/private/inspector}/InspectorPanel.js +17 -15
- package/{Libraries/Inspector → src/private/inspector}/NetworkOverlay.js +43 -27
- package/{Libraries/Inspector → src/private/inspector}/PerformanceOverlay.js +8 -6
- package/{Libraries/Inspector → src/private/inspector}/ReactDevToolsOverlay.js +11 -10
- package/{Libraries/Inspector → src/private/inspector}/StyleInspector.js +6 -6
- package/{Libraries/Network → src/private/inspector}/XHRInterceptor.js +5 -2
- package/{Libraries/Inspector → src/private/inspector}/getInspectorDataForViewAtPoint.js +6 -6
- package/{Libraries/Inspector → src/private/inspector}/resolveBoxStyle.js +5 -4
- package/src/private/renderer/errorhandling/ErrorHandlers.js +5 -5
- package/src/private/setup/setUpDOM.js +43 -3
- package/src/private/specs_DEPRECATED/README.md +7 -0
- package/src/private/{specs → specs_DEPRECATED}/components/ActivityIndicatorViewNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/AndroidDrawerLayoutNativeComponent.js +7 -7
- package/src/private/{specs → specs_DEPRECATED}/components/AndroidHorizontalScrollContentViewNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/AndroidSwipeRefreshLayoutNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/AndroidSwitchNativeComponent.js +5 -5
- package/src/private/{specs → specs_DEPRECATED}/components/DebuggingOverlayNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/ProgressBarAndroidNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/PullToRefreshViewNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/RCTInputAccessoryViewNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/RCTModalHostViewNativeComponent.js +5 -5
- package/src/private/{specs → specs_DEPRECATED}/components/RCTSafeAreaViewNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/components/SwitchNativeComponent.js +5 -5
- package/src/private/{specs → specs_DEPRECATED}/components/UnimplementedNativeViewNativeComponent.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeAccessibilityManager.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeActionSheetManager.js +7 -7
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeAlertManager.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeAnimatedModule.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeAnimatedTurboModule.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppState.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeBlobModule.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeClipboard.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevMenu.js +0 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevSettings.js +0 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeDeviceInfo.js +8 -8
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeDialogManagerAndroid.js +4 -4
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeExceptionsManager.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeFrameRateLogger.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeI18nManager.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageEditor.js +9 -9
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageLoaderAndroid.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageLoaderIOS.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageStoreAndroid.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageStoreIOS.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeNetworkingIOS.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativePermissionsAndroid.js +5 -4
- package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsAndroid.js +4 -4
- package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsIOS.js +4 -4
- package/src/private/{specs → specs_DEPRECATED}/modules/NativePushNotificationManagerIOS.js +7 -7
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeSampleTurboModule.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeSettingsManager.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeShareModule.js +3 -3
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeSourceCode.js +2 -2
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeStatusBarManagerAndroid.js +4 -4
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeStatusBarManagerIOS.js +6 -6
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeToastAndroid.js +2 -2
- package/src/private/specs_DEPRECATED/modules/NativeUIManager.js +184 -0
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeVibration.js +1 -1
- package/src/private/{specs → specs_DEPRECATED}/modules/NativeWebSocketModule.js +1 -1
- package/{flow/Position.js → src/private/types/HostComponent.js} +6 -6
- package/src/private/types/HostInstance.js +50 -0
- package/src/private/webapis/dom/events/CustomEvent.js +38 -0
- package/src/private/webapis/dom/events/Event.js +236 -0
- package/src/private/webapis/dom/events/EventHandlerAttributes.js +130 -0
- package/src/private/webapis/dom/events/EventTarget.js +436 -0
- package/src/private/webapis/dom/events/internals/EventInternals.js +120 -0
- package/src/private/webapis/dom/events/internals/EventTargetInternals.js +52 -0
- package/src/private/webapis/dom/nodes/ReactNativeDocument.js +121 -0
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +82 -51
- package/src/private/webapis/dom/nodes/ReadOnlyCharacterData.js +7 -6
- package/src/private/webapis/dom/nodes/ReadOnlyElement.js +26 -26
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +56 -78
- package/src/private/webapis/dom/nodes/internals/NodeInternals.js +144 -0
- package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentElementInstanceHandle.js +55 -0
- package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.js +44 -0
- package/src/private/webapis/dom/nodes/specs/NativeDOM.js +305 -194
- package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +2 -2
- package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js.flow +1 -1
- package/src/private/webapis/dom/oldstylecollections/NodeList.js +2 -2
- package/src/private/webapis/dom/oldstylecollections/NodeList.js.flow +1 -1
- package/src/private/webapis/{dom/oldstylecollections → geometry}/DOMRectList.js +3 -3
- package/src/private/webapis/{dom/oldstylecollections → geometry}/DOMRectList.js.flow +2 -2
- package/src/private/webapis/html/events/MessageEvent.js +56 -0
- package/src/private/webapis/intersectionobserver/IntersectionObserver.js +6 -6
- package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +1 -1
- package/src/private/webapis/intersectionobserver/{IntersectionObserverManager.js → internals/IntersectionObserverManager.js} +20 -17
- package/src/private/webapis/mutationobserver/MutationObserver.js +11 -11
- package/src/private/webapis/mutationobserver/{MutationObserverManager.js → internals/MutationObserverManager.js} +12 -14
- package/src/private/webapis/performance/EventTiming.js +1 -1
- package/src/private/webapis/performance/Performance.js +3 -3
- package/src/private/webapis/performance/PerformanceObserver.js +8 -8
- package/src/private/webapis/performance/{RawPerformanceEntry.js → internals/RawPerformanceEntry.js} +6 -6
- package/src/private/webapis/performance/{Utilities.js → internals/Utilities.js} +1 -1
- package/src/private/webapis/performance/specs/__mocks__/NativePerformanceMock.js +1 -1
- package/src/private/webapis/websockets/events/CloseEvent.js +52 -0
- package/src/private/webapis/xhr/events/ProgressEvent.js +52 -0
- package/src/types/bom.js.flow +403 -0
- package/src/types/dom.js.flow +6271 -0
- package/src/types/globals.d.ts +628 -0
- package/third-party-podspecs/RCT-Folly.podspec +1 -1
- package/third-party-podspecs/fmt.podspec +3 -2
- package/types/index.d.ts +2 -58
- package/types/public/ReactNativeTVTypes.d.ts +9 -7
- package/Libraries/Animated/AnimatedWeb.js +0 -26
- package/Libraries/JSInspector/InspectorAgent.js +0 -27
- package/Libraries/JSInspector/JSInspector.js +0 -33
- package/Libraries/JSInspector/NetworkAgent.js +0 -295
- package/Libraries/Utilities/DebugEnvironment.js +0 -16
- package/Libraries/Utilities/Platform.flow.js +0 -93
- package/Libraries/YellowBox/YellowBoxDeprecated.d.ts +0 -19
- package/Libraries/YellowBox/YellowBoxDeprecated.js +0 -75
- package/React/CoreModules/RCTWebSocketExecutor.h +0 -19
- package/React/CoreModules/RCTWebSocketExecutor.mm +0 -301
- package/React/UIUtils/RCTUIUtils.h +0 -30
- package/React/UIUtils/RCTUIUtils.m +0 -30
- package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutor.java +0 -50
- package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutorFactory.java +0 -57
- package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/RuntimeConfig.kt +0 -13
- package/ReactAndroid/src/main/java/com/facebook/hermes/unicode/AndroidUnicodeUtils.kt +0 -77
- package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.java +0 -208
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxCallbackImpl.java +0 -28
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/DimensionPropConverter.java +0 -33
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/FallbackJSBundleLoader.java +0 -85
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaJSExecutor.kt +0 -50
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ProxyJavaScriptExecutor.java +0 -80
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactBridge.java +0 -48
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeExecutor.java +0 -21
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeScheduler.java +0 -21
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadHandler.java +0 -32
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadImpl.java +0 -226
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadSpec.java +0 -65
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfiguration.java +0 -27
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationImpl.java +0 -65
- package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationSpec.java +0 -73
- package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/MapBufferSoLoader.kt +0 -35
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/IInspectorPackagerConnection.java +0 -16
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PackagerStatusCheck.java +0 -102
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PausedInDebuggerOverlayDialogManager.java +0 -89
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxContentView.java +0 -325
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxDialogSurfaceDelegate.java +0 -191
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ViewHierarchyUtil.java +0 -40
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/WebsocketJavaScriptExecutor.java +0 -183
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkHelper.java +0 -94
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener.java +0 -34
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.java +0 -67
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/SurfaceHandlerBinding.java +0 -87
- package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModulePerfLogger.java +0 -93
- package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobCollector.java +0 -34
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/CountingOutputStream.java +0 -67
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/CustomClientBuilder.java +0 -14
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkInterceptorCreator.java +0 -18
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpClientProvider.java +0 -83
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressRequestBody.java +0 -79
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressiveStringDecoder.java +0 -88
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/RequestBodyUtil.java +0 -166
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ResponseUtil.java +0 -123
- package/ReactAndroid/src/main/java/com/facebook/react/modules/network/TLSSocketFactory.java +0 -78
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroup.java +0 -57
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactStage.java +0 -38
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerPropertyUpdater.java +0 -172
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerResolver.java +0 -26
- package/ReactAndroid/src/main/java/com/facebook/react/views/common/ViewUtils.kt +0 -24
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/ReactTextInlineImageShadowNode.java +0 -24
- package/ReactAndroid/src/main/jni/react/jni/ProxyExecutor.cpp +0 -138
- package/ReactAndroid/src/main/jni/react/jni/ProxyExecutor.h +0 -64
- package/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/OnLoad.cpp +0 -16
- package/ReactCommon/react/renderer/css/CSSColorUtils.h +0 -373
- package/ReactCommon/react/renderer/css/CSSDeclaredStyle.h +0 -138
- package/ReactCommon/react/renderer/css/CSSKeywords.h +0 -454
- package/ReactCommon/react/renderer/css/CSSProperties.h +0 -1287
- package/ReactCommon/react/renderer/css/CSSValue.h +0 -92
- package/ReactCommon/react/renderer/css/CSSValueVariant.h +0 -267
- package/ReactCommon/react/renderer/css/tests/CSSDeclaredStyleTest.cpp +0 -164
- package/ReactCommon/react/renderer/mounting/tests/MountingTest.cpp +0 -640
- package/src/private/specs/modules/NativeCPUTime.js +0 -24
- package/src/private/specs/modules/NativeFantom.js +0 -37
- package/src/private/specs/modules/NativeUIManager.js +0 -111
- package/types/modules/globals.d.ts +0 -599
- /package/ReactCommon/{react → jsitooling/react}/runtime/JSRuntimeFactory.cpp +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAccessibilityInfo.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppearance.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeBugReporting.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevLoadingView.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeDeviceEventManager.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeFileReaderModule.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeHeadlessJsTaskSupport.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeIntentAndroid.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeJSCHeapCapture.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeKeyboardObserver.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeLinkingManager.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeLogBox.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeModalManager.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeNetworkingAndroid.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeReactDevToolsSettingsManager.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeRedBox.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeSegmentFetcher.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeSoundManager.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeTVNavigationEventEmitter.js +0 -0
- /package/src/private/{specs → specs_DEPRECATED}/modules/NativeTiming.js +0 -0
- /package/src/private/webapis/dom/nodes/{utilities → internals}/Traversal.js +0 -0
- /package/src/private/webapis/{dom/geometry → geometry}/DOMRect.js +0 -0
- /package/src/private/webapis/{dom/geometry → geometry}/DOMRectReadOnly.js +0 -0
- /package/src/private/webapis/{dom/oldstylecollections → utils}/ArrayLikeUtils.js +0 -0
|
@@ -27,18 +27,23 @@ public class com/facebook/react/DebugCorePackage$$ReactModuleInfoProvider : com/
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
public abstract class com/facebook/react/HeadlessJsTaskService : android/app/Service, com/facebook/react/jstasks/HeadlessJsTaskEventListener {
|
|
30
|
+
public static final field Companion Lcom/facebook/react/HeadlessJsTaskService$Companion;
|
|
30
31
|
public fun <init> ()V
|
|
31
|
-
public static fun acquireWakeLockNow (Landroid/content/Context;)V
|
|
32
|
-
protected fun getReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
33
|
-
protected fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
34
|
-
protected fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
|
|
32
|
+
public static final fun acquireWakeLockNow (Landroid/content/Context;)V
|
|
33
|
+
protected final fun getReactContext ()Lcom/facebook/react/bridge/ReactContext;
|
|
34
|
+
protected final fun getReactHost ()Lcom/facebook/react/ReactHost;
|
|
35
|
+
protected final fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
|
|
35
36
|
protected fun getTaskConfig (Landroid/content/Intent;)Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;
|
|
36
37
|
public fun onBind (Landroid/content/Intent;)Landroid/os/IBinder;
|
|
37
38
|
public fun onDestroy ()V
|
|
38
39
|
public fun onHeadlessJsTaskFinish (I)V
|
|
39
40
|
public fun onHeadlessJsTaskStart (I)V
|
|
40
41
|
public fun onStartCommand (Landroid/content/Intent;II)I
|
|
41
|
-
protected fun startTask (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)V
|
|
42
|
+
protected final fun startTask (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)V
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
public final class com/facebook/react/HeadlessJsTaskService$Companion {
|
|
46
|
+
public final fun acquireWakeLockNow (Landroid/content/Context;)V
|
|
42
47
|
}
|
|
43
48
|
|
|
44
49
|
public final class com/facebook/react/JSEngineResolutionAlgorithm : java/lang/Enum {
|
|
@@ -136,6 +141,8 @@ public class com/facebook/react/ReactActivityDelegate {
|
|
|
136
141
|
public fun onUserLeaveHint ()V
|
|
137
142
|
public fun onWindowFocusChanged (Z)V
|
|
138
143
|
public fun requestPermissions ([Ljava/lang/String;ILcom/facebook/react/modules/core/PermissionListener;)V
|
|
144
|
+
public fun setReactRootView (Lcom/facebook/react/ReactRootView;)V
|
|
145
|
+
public fun setReactSurface (Lcom/facebook/react/interfaces/fabric/ReactSurface;)V
|
|
139
146
|
}
|
|
140
147
|
|
|
141
148
|
public abstract interface class com/facebook/react/ReactApplication {
|
|
@@ -167,6 +174,8 @@ public class com/facebook/react/ReactDelegate {
|
|
|
167
174
|
public fun onUserLeaveHint ()V
|
|
168
175
|
public fun onWindowFocusChanged (Z)V
|
|
169
176
|
public fun reload ()V
|
|
177
|
+
public fun setReactRootView (Lcom/facebook/react/ReactRootView;)V
|
|
178
|
+
public fun setReactSurface (Lcom/facebook/react/interfaces/fabric/ReactSurface;)V
|
|
170
179
|
public fun shouldShowDevMenuOrReload (ILandroid/view/KeyEvent;)Z
|
|
171
180
|
public fun unloadApp ()V
|
|
172
181
|
}
|
|
@@ -345,11 +354,6 @@ public abstract interface class com/facebook/react/ReactPackage {
|
|
|
345
354
|
public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
346
355
|
}
|
|
347
356
|
|
|
348
|
-
public abstract interface class com/facebook/react/ReactPackageLogger {
|
|
349
|
-
public abstract fun endProcessPackage ()V
|
|
350
|
-
public abstract fun startProcessPackage ()V
|
|
351
|
-
}
|
|
352
|
-
|
|
353
357
|
public abstract class com/facebook/react/ReactPackageTurboModuleManagerDelegate : com/facebook/react/internal/turbomodule/core/TurboModuleManagerDelegate {
|
|
354
358
|
protected fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;)V
|
|
355
359
|
protected fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;Lcom/facebook/jni/HybridData;)V
|
|
@@ -452,34 +456,6 @@ public abstract class com/facebook/react/animated/AnimatedNode {
|
|
|
452
456
|
public final class com/facebook/react/animated/AnimatedNode$Companion {
|
|
453
457
|
}
|
|
454
458
|
|
|
455
|
-
public abstract interface class com/facebook/react/animated/AnimatedNodeValueListener {
|
|
456
|
-
public abstract fun onValueUpdate (D)V
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
public abstract interface class com/facebook/react/animated/AnimatedNodeWithUpdateableConfig {
|
|
460
|
-
public abstract fun onUpdateConfig (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
public final class com/facebook/react/animated/InterpolationAnimatedNode : com/facebook/react/animated/ValueAnimatedNode {
|
|
464
|
-
public static final field Companion Lcom/facebook/react/animated/InterpolationAnimatedNode$Companion;
|
|
465
|
-
public static final field EXTRAPOLATE_TYPE_CLAMP Ljava/lang/String;
|
|
466
|
-
public static final field EXTRAPOLATE_TYPE_EXTEND Ljava/lang/String;
|
|
467
|
-
public static final field EXTRAPOLATE_TYPE_IDENTITY Ljava/lang/String;
|
|
468
|
-
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
469
|
-
public fun getAnimatedObject ()Ljava/lang/Object;
|
|
470
|
-
public fun onAttachedToNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
471
|
-
public fun onDetachedFromNode (Lcom/facebook/react/animated/AnimatedNode;)V
|
|
472
|
-
public fun prettyPrint ()Ljava/lang/String;
|
|
473
|
-
public fun update ()V
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
public final class com/facebook/react/animated/InterpolationAnimatedNode$Companion {
|
|
477
|
-
public final fun interpolate (DDDDDLjava/lang/String;Ljava/lang/String;)D
|
|
478
|
-
public final fun interpolate (D[D[DLjava/lang/String;Ljava/lang/String;)D
|
|
479
|
-
public final fun interpolateColor (D[D[I)I
|
|
480
|
-
public final fun interpolateString (Ljava/lang/String;D[D[[DLjava/lang/String;Ljava/lang/String;)Ljava/lang/String;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
459
|
public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbreact/specs/NativeAnimatedModuleSpec, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManagerListener {
|
|
484
460
|
public static final field ANIMATED_MODULE_DEBUG Z
|
|
485
461
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
@@ -549,19 +525,6 @@ public class com/facebook/react/animated/NativeAnimatedNodesManager : com/facebo
|
|
|
549
525
|
public fun updateAnimatedNodeConfig (ILcom/facebook/react/bridge/ReadableMap;)V
|
|
550
526
|
}
|
|
551
527
|
|
|
552
|
-
public class com/facebook/react/animated/ValueAnimatedNode : com/facebook/react/animated/AnimatedNode {
|
|
553
|
-
public fun <init> ()V
|
|
554
|
-
public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
|
|
555
|
-
public synthetic fun <init> (Lcom/facebook/react/bridge/ReadableMap;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
556
|
-
public final fun extractOffset ()V
|
|
557
|
-
public final fun flattenOffset ()V
|
|
558
|
-
public fun getAnimatedObject ()Ljava/lang/Object;
|
|
559
|
-
public final fun getValue ()D
|
|
560
|
-
public final fun onValueUpdate ()V
|
|
561
|
-
public fun prettyPrint ()Ljava/lang/String;
|
|
562
|
-
public final fun setValueListener (Lcom/facebook/react/animated/AnimatedNodeValueListener;)V
|
|
563
|
-
}
|
|
564
|
-
|
|
565
528
|
public abstract interface class com/facebook/react/bridge/ActivityEventListener {
|
|
566
529
|
public abstract fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
|
|
567
530
|
public abstract fun onNewIntent (Landroid/content/Intent;)V
|
|
@@ -716,7 +679,7 @@ public class com/facebook/react/bridge/ColorPropConverter {
|
|
|
716
679
|
public static fun resolveResourcePath (Landroid/content/Context;Ljava/lang/String;)Ljava/lang/Integer;
|
|
717
680
|
}
|
|
718
681
|
|
|
719
|
-
public class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/Callback {
|
|
682
|
+
public final class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/Callback {
|
|
720
683
|
public fun invoke ([Ljava/lang/Object;)V
|
|
721
684
|
}
|
|
722
685
|
|
|
@@ -733,16 +696,11 @@ public class com/facebook/react/bridge/CxxModuleWrapperBase : com/facebook/react
|
|
|
733
696
|
protected fun resetModule (Lcom/facebook/jni/HybridData;)V
|
|
734
697
|
}
|
|
735
698
|
|
|
736
|
-
public class com/facebook/react/bridge/DefaultJSExceptionHandler : com/facebook/react/bridge/JSExceptionHandler {
|
|
699
|
+
public final class com/facebook/react/bridge/DefaultJSExceptionHandler : com/facebook/react/bridge/JSExceptionHandler {
|
|
737
700
|
public fun <init> ()V
|
|
738
701
|
public fun handleException (Ljava/lang/Exception;)V
|
|
739
702
|
}
|
|
740
703
|
|
|
741
|
-
public class com/facebook/react/bridge/DimensionPropConverter {
|
|
742
|
-
public fun <init> ()V
|
|
743
|
-
public static fun getDimension (Ljava/lang/Object;)Lcom/facebook/yoga/YogaValue;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
704
|
public abstract interface class com/facebook/react/bridge/Dynamic {
|
|
747
705
|
public abstract fun asArray ()Lcom/facebook/react/bridge/ReadableArray;
|
|
748
706
|
public abstract fun asBoolean ()Z
|
|
@@ -768,11 +726,6 @@ public class com/facebook/react/bridge/DynamicFromObject : com/facebook/react/br
|
|
|
768
726
|
public fun recycle ()V
|
|
769
727
|
}
|
|
770
728
|
|
|
771
|
-
public final class com/facebook/react/bridge/FallbackJSBundleLoader : com/facebook/react/bridge/JSBundleLoader {
|
|
772
|
-
public fun <init> (Ljava/util/List;)V
|
|
773
|
-
public fun loadScript (Lcom/facebook/react/bridge/JSBundleLoaderDelegate;)Ljava/lang/String;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
729
|
public abstract class com/facebook/react/bridge/GuardedAsyncTask : android/os/AsyncTask {
|
|
777
730
|
protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
|
|
778
731
|
protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
@@ -831,7 +784,6 @@ public abstract class com/facebook/react/bridge/JSBundleLoader {
|
|
|
831
784
|
public static fun createCachedSplitBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
832
785
|
public static fun createFileLoader (Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
833
786
|
public static fun createFileLoader (Ljava/lang/String;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
834
|
-
public static fun createRemoteDebuggerBundleLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
|
|
835
787
|
public abstract fun loadScript (Lcom/facebook/react/bridge/JSBundleLoaderDelegate;)Ljava/lang/String;
|
|
836
788
|
}
|
|
837
789
|
|
|
@@ -858,21 +810,6 @@ public class com/facebook/react/bridge/JSONArguments {
|
|
|
858
810
|
public static fun fromJSONObjectString (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableMap;
|
|
859
811
|
}
|
|
860
812
|
|
|
861
|
-
public abstract interface class com/facebook/react/bridge/JavaJSExecutor {
|
|
862
|
-
public abstract fun close ()V
|
|
863
|
-
public abstract fun executeJSCall (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
|
|
864
|
-
public abstract fun loadBundle (Ljava/lang/String;)V
|
|
865
|
-
public abstract fun setGlobalVariable (Ljava/lang/String;Ljava/lang/String;)V
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
public abstract interface class com/facebook/react/bridge/JavaJSExecutor$Factory {
|
|
869
|
-
public abstract fun create ()Lcom/facebook/react/bridge/JavaJSExecutor;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
public final class com/facebook/react/bridge/JavaJSExecutor$ProxyExecutorException : java/lang/Exception {
|
|
873
|
-
public fun <init> (Ljava/lang/Throwable;)V
|
|
874
|
-
}
|
|
875
|
-
|
|
876
813
|
public final class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge/ReadableArray, com/facebook/react/bridge/WritableArray {
|
|
877
814
|
public static final field Companion Lcom/facebook/react/bridge/JavaOnlyArray$Companion;
|
|
878
815
|
public fun <init> ()V
|
|
@@ -1107,31 +1044,10 @@ public class com/facebook/react/bridge/PromiseImpl : com/facebook/react/bridge/P
|
|
|
1107
1044
|
public fun resolve (Ljava/lang/Object;)V
|
|
1108
1045
|
}
|
|
1109
1046
|
|
|
1110
|
-
public class com/facebook/react/bridge/ProxyJavaScriptExecutor : com/facebook/react/bridge/JavaScriptExecutor {
|
|
1111
|
-
public fun <init> (Lcom/facebook/react/bridge/JavaJSExecutor;)V
|
|
1112
|
-
public fun close ()V
|
|
1113
|
-
public fun getName ()Ljava/lang/String;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
public class com/facebook/react/bridge/ProxyJavaScriptExecutor$Factory : com/facebook/react/bridge/JavaScriptExecutorFactory {
|
|
1117
|
-
public fun <init> (Lcom/facebook/react/bridge/JavaJSExecutor$Factory;)V
|
|
1118
|
-
public fun create ()Lcom/facebook/react/bridge/JavaScriptExecutor;
|
|
1119
|
-
public fun startSamplingProfiler ()V
|
|
1120
|
-
public fun stopSamplingProfiler (Ljava/lang/String;)V
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
1047
|
public abstract class com/facebook/react/bridge/ReactApplicationContext : com/facebook/react/bridge/ReactContext {
|
|
1124
1048
|
public fun <init> (Landroid/content/Context;)V
|
|
1125
1049
|
}
|
|
1126
1050
|
|
|
1127
|
-
public class com/facebook/react/bridge/ReactBridge {
|
|
1128
|
-
public fun <init> ()V
|
|
1129
|
-
public static fun getLoadEndTime ()J
|
|
1130
|
-
public static fun getLoadStartTime ()J
|
|
1131
|
-
public static fun isInitialized ()Z
|
|
1132
|
-
public static fun staticInit ()V
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
1051
|
public abstract class com/facebook/react/bridge/ReactContext : android/content/ContextWrapper {
|
|
1136
1052
|
protected field mInteropModuleRegistry Lcom/facebook/react/bridge/interop/InteropModuleRegistry;
|
|
1137
1053
|
public fun <init> (Landroid/content/Context;)V
|
|
@@ -1338,8 +1254,6 @@ public final class com/facebook/react/bridge/ReactMarkerConstants : java/lang/En
|
|
|
1338
1254
|
public static final field JAVASCRIPT_EXECUTOR_FACTORY_INJECT_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1339
1255
|
public static final field LOAD_REACT_NATIVE_FABRIC_SO_FILE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1340
1256
|
public static final field LOAD_REACT_NATIVE_FABRIC_SO_FILE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1341
|
-
public static final field LOAD_REACT_NATIVE_MAPBUFFER_SO_FILE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1342
|
-
public static final field LOAD_REACT_NATIVE_MAPBUFFER_SO_FILE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1343
1257
|
public static final field LOAD_REACT_NATIVE_SO_FILE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1344
1258
|
public static final field LOAD_REACT_NATIVE_SO_FILE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1345
1259
|
public static final field NATIVE_MODULE_INITIALIZE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
@@ -1391,7 +1305,8 @@ public final class com/facebook/react/bridge/ReactMarkerConstants : java/lang/En
|
|
|
1391
1305
|
public static final field VM_INIT Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1392
1306
|
public static final field loadApplicationScript_endStringConvert Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1393
1307
|
public static final field loadApplicationScript_startStringConvert Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1394
|
-
public fun
|
|
1308
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
1309
|
+
public final fun hasMatchingNameMarker ()Z
|
|
1395
1310
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1396
1311
|
public static fun values ()[Lcom/facebook/react/bridge/ReactMarkerConstants;
|
|
1397
1312
|
}
|
|
@@ -1429,6 +1344,7 @@ public final class com/facebook/react/bridge/ReactSoftExceptionLogger$Categories
|
|
|
1429
1344
|
public static final field RVG_IS_VIEW_CLIPPED Ljava/lang/String;
|
|
1430
1345
|
public static final field RVG_ON_VIEW_REMOVED Ljava/lang/String;
|
|
1431
1346
|
public static final field SOFT_ASSERTIONS Ljava/lang/String;
|
|
1347
|
+
public static final field SURFACE_MOUNTING_MANAGER_MISSING_VIEWSTATE Ljava/lang/String;
|
|
1432
1348
|
}
|
|
1433
1349
|
|
|
1434
1350
|
public abstract interface class com/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener {
|
|
@@ -1533,12 +1449,10 @@ public final class com/facebook/react/bridge/RetryableMountingLayerException : j
|
|
|
1533
1449
|
public fun <init> (Ljava/lang/Throwable;)V
|
|
1534
1450
|
}
|
|
1535
1451
|
|
|
1536
|
-
public class com/facebook/react/bridge/RuntimeExecutor {
|
|
1537
|
-
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
1452
|
+
public final class com/facebook/react/bridge/RuntimeExecutor : com/facebook/jni/HybridClassBase {
|
|
1538
1453
|
}
|
|
1539
1454
|
|
|
1540
|
-
public class com/facebook/react/bridge/RuntimeScheduler {
|
|
1541
|
-
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
1455
|
+
public final class com/facebook/react/bridge/RuntimeScheduler : com/facebook/jni/HybridClassBase {
|
|
1542
1456
|
}
|
|
1543
1457
|
|
|
1544
1458
|
public final class com/facebook/react/bridge/SoftAssertions {
|
|
@@ -1659,18 +1573,20 @@ public abstract interface class com/facebook/react/bridge/queue/MessageQueueThre
|
|
|
1659
1573
|
public abstract fun runOnQueue (Ljava/lang/Runnable;)Z
|
|
1660
1574
|
}
|
|
1661
1575
|
|
|
1662
|
-
public class com/facebook/react/bridge/queue/MessageQueueThreadHandler : android/os/Handler {
|
|
1576
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadHandler : android/os/Handler {
|
|
1663
1577
|
public fun <init> (Landroid/os/Looper;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)V
|
|
1664
1578
|
public fun dispatchMessage (Landroid/os/Message;)V
|
|
1665
1579
|
}
|
|
1666
1580
|
|
|
1667
|
-
public class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebook/react/bridge/queue/MessageQueueThread {
|
|
1581
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebook/react/bridge/queue/MessageQueueThread {
|
|
1582
|
+
public static final field Companion Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl$Companion;
|
|
1583
|
+
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
|
|
1668
1584
|
public fun assertIsOnThread ()V
|
|
1669
1585
|
public fun assertIsOnThread (Ljava/lang/String;)V
|
|
1670
1586
|
public fun callOnQueue (Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;
|
|
1671
|
-
public static fun create (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;
|
|
1672
|
-
public fun getLooper ()Landroid/os/Looper;
|
|
1673
|
-
public fun getName ()Ljava/lang/String;
|
|
1587
|
+
public static final fun create (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;
|
|
1588
|
+
public final fun getLooper ()Landroid/os/Looper;
|
|
1589
|
+
public final fun getName ()Ljava/lang/String;
|
|
1674
1590
|
public fun getPerfStats ()Lcom/facebook/react/bridge/queue/MessageQueueThreadPerfStats;
|
|
1675
1591
|
public fun isIdle ()Z
|
|
1676
1592
|
public fun isOnThread ()Z
|
|
@@ -1679,26 +1595,40 @@ public class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebo
|
|
|
1679
1595
|
public fun runOnQueue (Ljava/lang/Runnable;)Z
|
|
1680
1596
|
}
|
|
1681
1597
|
|
|
1682
|
-
public class com/facebook/react/bridge/queue/
|
|
1598
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadImpl$Companion {
|
|
1599
|
+
public final fun create (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadPerfStats {
|
|
1683
1603
|
public field cpuTime J
|
|
1684
1604
|
public field wallTime J
|
|
1685
1605
|
public fun <init> ()V
|
|
1686
1606
|
}
|
|
1687
1607
|
|
|
1688
|
-
public class com/facebook/react/bridge/queue/MessageQueueThreadSpec {
|
|
1608
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadSpec {
|
|
1609
|
+
public static final field Companion Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$Companion;
|
|
1689
1610
|
public static final field DEFAULT_STACK_SIZE_BYTES J
|
|
1690
|
-
public fun
|
|
1691
|
-
public fun
|
|
1692
|
-
public fun
|
|
1693
|
-
public
|
|
1694
|
-
public static fun
|
|
1695
|
-
public static fun newBackgroundThreadSpec (Ljava/lang/String;
|
|
1696
|
-
public static fun
|
|
1611
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;Ljava/lang/String;JLkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
1612
|
+
public final fun getName ()Ljava/lang/String;
|
|
1613
|
+
public final fun getStackSize ()J
|
|
1614
|
+
public final fun getThreadType ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
|
|
1615
|
+
public static final fun mainThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1616
|
+
public static final fun newBackgroundThreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1617
|
+
public static final fun newBackgroundThreadSpec (Ljava/lang/String;J)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1618
|
+
public static final fun newUIBackgroundTreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1697
1619
|
}
|
|
1698
1620
|
|
|
1699
|
-
|
|
1621
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadSpec$Companion {
|
|
1622
|
+
public final fun mainThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1623
|
+
public final fun newBackgroundThreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1624
|
+
public final fun newBackgroundThreadSpec (Ljava/lang/String;J)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1625
|
+
public final fun newUIBackgroundTreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
public final class com/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType : java/lang/Enum {
|
|
1700
1629
|
public static final field MAIN_UI Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
|
|
1701
1630
|
public static final field NEW_BACKGROUND Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
|
|
1631
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
1702
1632
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
|
|
1703
1633
|
public static fun values ()[Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
|
|
1704
1634
|
}
|
|
@@ -1714,27 +1644,38 @@ public abstract interface class com/facebook/react/bridge/queue/ReactQueueConfig
|
|
|
1714
1644
|
public abstract fun getUIQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
|
|
1715
1645
|
}
|
|
1716
1646
|
|
|
1717
|
-
public class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl : com/facebook/react/bridge/queue/ReactQueueConfiguration {
|
|
1718
|
-
public static
|
|
1647
|
+
public final class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl : com/facebook/react/bridge/queue/ReactQueueConfiguration {
|
|
1648
|
+
public static final field Companion Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl$Companion;
|
|
1649
|
+
public synthetic fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
1650
|
+
public static final fun create (Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl;
|
|
1719
1651
|
public fun destroy ()V
|
|
1720
1652
|
public fun getJSQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
|
|
1721
1653
|
public fun getNativeModulesQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
|
|
1722
1654
|
public fun getUIQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
|
|
1723
1655
|
}
|
|
1724
1656
|
|
|
1725
|
-
public class com/facebook/react/bridge/queue/
|
|
1657
|
+
public final class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl$Companion {
|
|
1658
|
+
public final fun create (Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec {
|
|
1662
|
+
public static final field Companion Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Companion;
|
|
1726
1663
|
public fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)V
|
|
1727
|
-
public static fun
|
|
1728
|
-
public
|
|
1729
|
-
public fun
|
|
1730
|
-
public fun getNativeModulesQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1664
|
+
public static final fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
|
|
1665
|
+
public final fun getJSQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1666
|
+
public final fun getNativeModulesQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
|
|
1731
1667
|
}
|
|
1732
1668
|
|
|
1733
|
-
public class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder {
|
|
1669
|
+
public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder {
|
|
1734
1670
|
public fun <init> ()V
|
|
1735
|
-
public fun build ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
|
|
1736
|
-
public fun setJSQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
|
|
1737
|
-
public fun setNativeModulesQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
|
|
1671
|
+
public final fun build ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
|
|
1672
|
+
public final fun setJSQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
|
|
1673
|
+
public final fun setNativeModulesQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Companion {
|
|
1677
|
+
public final fun builder ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
|
|
1678
|
+
public final fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
|
|
1738
1679
|
}
|
|
1739
1680
|
|
|
1740
1681
|
public final class com/facebook/react/common/ClassFinder {
|
|
@@ -1807,6 +1748,15 @@ public final class com/facebook/react/common/ReactConstants {
|
|
|
1807
1748
|
public static final field UNSET I
|
|
1808
1749
|
}
|
|
1809
1750
|
|
|
1751
|
+
public final class com/facebook/react/common/ReleaseLevel : java/lang/Enum {
|
|
1752
|
+
public static final field CANARY Lcom/facebook/react/common/ReleaseLevel;
|
|
1753
|
+
public static final field EXPERIMENTAL Lcom/facebook/react/common/ReleaseLevel;
|
|
1754
|
+
public static final field STABLE Lcom/facebook/react/common/ReleaseLevel;
|
|
1755
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
1756
|
+
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/common/ReleaseLevel;
|
|
1757
|
+
public static fun values ()[Lcom/facebook/react/common/ReleaseLevel;
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1810
1760
|
public final class com/facebook/react/common/ShakeDetector : android/hardware/SensorEventListener {
|
|
1811
1761
|
public fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;)V
|
|
1812
1762
|
public fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;I)V
|
|
@@ -1854,22 +1804,6 @@ public final class com/facebook/react/common/SystemClock {
|
|
|
1854
1804
|
public static final fun uptimeMillis ()J
|
|
1855
1805
|
}
|
|
1856
1806
|
|
|
1857
|
-
public abstract interface annotation class com/facebook/react/common/annotations/DeprecatedInNewArchitecture : java/lang/annotation/Annotation {
|
|
1858
|
-
public abstract fun message ()Ljava/lang/String;
|
|
1859
|
-
}
|
|
1860
|
-
|
|
1861
|
-
public abstract interface annotation class com/facebook/react/common/annotations/FrameworkAPI : java/lang/annotation/Annotation {
|
|
1862
|
-
}
|
|
1863
|
-
|
|
1864
|
-
public abstract interface annotation class com/facebook/react/common/annotations/StableReactNativeAPI : java/lang/annotation/Annotation {
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
public abstract interface annotation class com/facebook/react/common/annotations/UnstableReactNativeAPI : java/lang/annotation/Annotation {
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
public abstract interface annotation class com/facebook/react/common/annotations/VisibleForTesting : java/lang/annotation/Annotation {
|
|
1871
|
-
}
|
|
1872
|
-
|
|
1873
1807
|
public final class com/facebook/react/common/assets/ReactFontManager {
|
|
1874
1808
|
public static final field Companion Lcom/facebook/react/common/assets/ReactFontManager$Companion;
|
|
1875
1809
|
public fun <init> ()V
|
|
@@ -1904,10 +1838,12 @@ public final class com/facebook/react/common/assets/ReactFontManager$TypefaceSty
|
|
|
1904
1838
|
|
|
1905
1839
|
public final class com/facebook/react/common/build/ReactBuildConfig {
|
|
1906
1840
|
public static final field DEBUG Z
|
|
1841
|
+
public static final field ENABLE_PERFETTO Z
|
|
1907
1842
|
public static final field EXOPACKAGE_FLAGS I
|
|
1908
1843
|
public static final field INSTANCE Lcom/facebook/react/common/build/ReactBuildConfig;
|
|
1909
1844
|
public static final field IS_INTERNAL_BUILD Z
|
|
1910
1845
|
public static final field UNSTABLE_ENABLE_FUSEBOX_RELEASE Z
|
|
1846
|
+
public static final field UNSTABLE_ENABLE_MINIFY_LEGACY_ARCHITECTURE Z
|
|
1911
1847
|
}
|
|
1912
1848
|
|
|
1913
1849
|
public abstract interface class com/facebook/react/common/mapbuffer/MapBuffer : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker {
|
|
@@ -1952,12 +1888,7 @@ public abstract interface class com/facebook/react/common/mapbuffer/MapBuffer$En
|
|
|
1952
1888
|
public abstract fun getType ()Lcom/facebook/react/common/mapbuffer/MapBuffer$DataType;
|
|
1953
1889
|
}
|
|
1954
1890
|
|
|
1955
|
-
public final class com/facebook/react/common/mapbuffer/
|
|
1956
|
-
public static final field INSTANCE Lcom/facebook/react/common/mapbuffer/MapBufferSoLoader;
|
|
1957
|
-
public static final fun staticInit ()V
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
|
-
public final class com/facebook/react/common/mapbuffer/ReadableMapBuffer : com/facebook/react/common/mapbuffer/MapBuffer {
|
|
1891
|
+
public final class com/facebook/react/common/mapbuffer/ReadableMapBuffer : com/facebook/jni/HybridClassBase, com/facebook/react/common/mapbuffer/MapBuffer {
|
|
1961
1892
|
public static final field Companion Lcom/facebook/react/common/mapbuffer/ReadableMapBuffer$Companion;
|
|
1962
1893
|
public fun contains (I)Z
|
|
1963
1894
|
public fun entryAt (I)Lcom/facebook/react/common/mapbuffer/MapBuffer$Entry;
|
|
@@ -2019,12 +1950,14 @@ public final class com/facebook/react/defaults/DefaultNewArchitectureEntryPoint
|
|
|
2019
1950
|
public static final fun getBridgelessEnabled ()Z
|
|
2020
1951
|
public static final fun getConcurrentReactEnabled ()Z
|
|
2021
1952
|
public static final fun getFabricEnabled ()Z
|
|
1953
|
+
public final fun getReleaseLevel ()Lcom/facebook/react/common/ReleaseLevel;
|
|
2022
1954
|
public static final fun getTurboModulesEnabled ()Z
|
|
2023
1955
|
public static final fun load ()V
|
|
2024
1956
|
public static final fun load (Z)V
|
|
2025
1957
|
public static final fun load (ZZ)V
|
|
2026
1958
|
public static final fun load (ZZZ)V
|
|
2027
1959
|
public static synthetic fun load$default (ZZZILjava/lang/Object;)V
|
|
1960
|
+
public final fun setReleaseLevel (Lcom/facebook/react/common/ReleaseLevel;)V
|
|
2028
1961
|
}
|
|
2029
1962
|
|
|
2030
1963
|
public class com/facebook/react/defaults/DefaultReactActivityDelegate : com/facebook/react/ReactActivityDelegate {
|
|
@@ -2036,15 +1969,21 @@ public class com/facebook/react/defaults/DefaultReactActivityDelegate : com/face
|
|
|
2036
1969
|
|
|
2037
1970
|
public final class com/facebook/react/defaults/DefaultReactHost {
|
|
2038
1971
|
public static final field INSTANCE Lcom/facebook/react/defaults/DefaultReactHost;
|
|
2039
|
-
public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;)Lcom/facebook/react/ReactHost;
|
|
1972
|
+
public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;Lcom/facebook/react/runtime/JSRuntimeFactory;)Lcom/facebook/react/ReactHost;
|
|
1973
|
+
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;)Lcom/facebook/react/ReactHost;
|
|
1974
|
+
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;)Lcom/facebook/react/ReactHost;
|
|
2040
1975
|
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;)Lcom/facebook/react/ReactHost;
|
|
2041
1976
|
public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;)Lcom/facebook/react/ReactHost;
|
|
1977
|
+
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;Lcom/facebook/react/runtime/JSRuntimeFactory;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
1978
|
+
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
1979
|
+
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2042
1980
|
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2043
1981
|
public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
|
|
2044
1982
|
}
|
|
2045
1983
|
|
|
2046
1984
|
public abstract class com/facebook/react/defaults/DefaultReactNativeHost : com/facebook/react/ReactNativeHost {
|
|
2047
1985
|
protected fun <init> (Landroid/app/Application;)V
|
|
1986
|
+
public fun clear ()V
|
|
2048
1987
|
protected fun getJSEngineResolutionAlgorithm ()Lcom/facebook/react/JSEngineResolutionAlgorithm;
|
|
2049
1988
|
protected fun getReactPackageTurboModuleManagerDelegateBuilder ()Lcom/facebook/react/ReactPackageTurboModuleManagerDelegate$Builder;
|
|
2050
1989
|
protected fun getUIManagerProvider ()Lcom/facebook/react/bridge/UIManagerProvider;
|
|
@@ -2097,14 +2036,7 @@ public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementa
|
|
|
2097
2036
|
public final fun setDevLoadingEnabled (Z)V
|
|
2098
2037
|
}
|
|
2099
2038
|
|
|
2100
|
-
public final class com/facebook/react/devsupport/DefaultDevSupportManagerFactory : com/facebook/react/devsupport/DevSupportManagerFactory {
|
|
2101
|
-
public fun <init> ()V
|
|
2102
|
-
public fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2103
|
-
public fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;Z)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
|
|
2104
|
-
}
|
|
2105
|
-
|
|
2106
2039
|
public class com/facebook/react/devsupport/DevServerHelper {
|
|
2107
|
-
public static final field RELOAD_APP_EXTRA_JS_PROXY Ljava/lang/String;
|
|
2108
2040
|
public fun <init> (Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;Landroid/content/Context;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;)V
|
|
2109
2041
|
public fun closeInspectorConnection ()V
|
|
2110
2042
|
public fun closePackagerConnection ()V
|
|
@@ -2114,12 +2046,10 @@ public class com/facebook/react/devsupport/DevServerHelper {
|
|
|
2114
2046
|
public fun downloadBundleResourceFromUrlSync (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
|
|
2115
2047
|
public fun getDevServerBundleURL (Ljava/lang/String;)Ljava/lang/String;
|
|
2116
2048
|
public fun getDevServerSplitBundleURL (Ljava/lang/String;)Ljava/lang/String;
|
|
2117
|
-
public fun getJSBundleURLForRemoteDebugging (Ljava/lang/String;)Ljava/lang/String;
|
|
2118
2049
|
public fun getSourceMapUrl (Ljava/lang/String;)Ljava/lang/String;
|
|
2119
2050
|
public fun getSourceUrl (Ljava/lang/String;)Ljava/lang/String;
|
|
2120
2051
|
public fun getWebsocketProxyURL ()Ljava/lang/String;
|
|
2121
2052
|
public fun isPackagerRunning (Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
|
|
2122
|
-
public fun launchJSDevtools ()V
|
|
2123
2053
|
public fun openDebugger (Lcom/facebook/react/bridge/ReactContext;Ljava/lang/String;)V
|
|
2124
2054
|
public fun openInspectorConnection ()V
|
|
2125
2055
|
public fun openPackagerConnection (Ljava/lang/String;Lcom/facebook/react/devsupport/DevServerHelper$PackagerCommandListener;)V
|
|
@@ -2134,11 +2064,6 @@ public abstract interface class com/facebook/react/devsupport/DevServerHelper$Pa
|
|
|
2134
2064
|
public abstract fun onPackagerReloadCommand ()V
|
|
2135
2065
|
}
|
|
2136
2066
|
|
|
2137
|
-
public final class com/facebook/react/devsupport/DevSettingsActivity : android/preference/PreferenceActivity {
|
|
2138
|
-
public fun <init> ()V
|
|
2139
|
-
public fun onCreate (Landroid/os/Bundle;)V
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
2067
|
public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/facebook/react/devsupport/interfaces/DevSupportManager {
|
|
2143
2068
|
protected final field mReactInstanceDevHelper Lcom/facebook/react/devsupport/ReactInstanceDevHelper;
|
|
2144
2069
|
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
|
|
@@ -2157,7 +2082,6 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
|
|
|
2157
2082
|
public fun getDevSupportEnabled ()Z
|
|
2158
2083
|
public fun getDownloadedJSBundleFile ()Ljava/lang/String;
|
|
2159
2084
|
public fun getJSAppBundleName ()Ljava/lang/String;
|
|
2160
|
-
public fun getJSBundleURLForRemoteDebugging ()Ljava/lang/String;
|
|
2161
2085
|
public fun getLastErrorCookie ()I
|
|
2162
2086
|
public fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2163
2087
|
public fun getLastErrorTitle ()Ljava/lang/String;
|
|
@@ -2185,7 +2109,6 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
|
|
|
2185
2109
|
public fun setFpsDebugEnabled (Z)V
|
|
2186
2110
|
public fun setHotModuleReplacementEnabled (Z)V
|
|
2187
2111
|
public fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
|
|
2188
|
-
public fun setRemoteJSDebugEnabled (Z)V
|
|
2189
2112
|
protected fun showDevLoadingViewForRemoteJSEnabled ()V
|
|
2190
2113
|
public fun showDevOptionsDialog ()V
|
|
2191
2114
|
public fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
@@ -2218,30 +2141,6 @@ public abstract interface class com/facebook/react/devsupport/HMRClient : com/fa
|
|
|
2218
2141
|
public abstract fun setup (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IZLjava/lang/String;)V
|
|
2219
2142
|
}
|
|
2220
2143
|
|
|
2221
|
-
public final class com/facebook/react/devsupport/InspectorFlags {
|
|
2222
|
-
public static final field INSTANCE Lcom/facebook/react/devsupport/InspectorFlags;
|
|
2223
|
-
public static final fun getFuseboxEnabled ()Z
|
|
2224
|
-
public static final fun getIsProfilingBuild ()Z
|
|
2225
|
-
}
|
|
2226
|
-
|
|
2227
|
-
public class com/facebook/react/devsupport/JSDebuggerWebSocketClient : okhttp3/WebSocketListener {
|
|
2228
|
-
public fun <init> ()V
|
|
2229
|
-
public fun closeQuietly ()V
|
|
2230
|
-
public fun connect (Ljava/lang/String;Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
|
|
2231
|
-
public fun executeJSCall (Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
|
|
2232
|
-
public fun loadBundle (Ljava/lang/String;Ljava/util/HashMap;Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
|
|
2233
|
-
public fun onClosed (Lokhttp3/WebSocket;ILjava/lang/String;)V
|
|
2234
|
-
public fun onFailure (Lokhttp3/WebSocket;Ljava/lang/Throwable;Lokhttp3/Response;)V
|
|
2235
|
-
public fun onMessage (Lokhttp3/WebSocket;Ljava/lang/String;)V
|
|
2236
|
-
public fun onOpen (Lokhttp3/WebSocket;Lokhttp3/Response;)V
|
|
2237
|
-
public fun prepareJSRuntime (Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
|
|
2238
|
-
}
|
|
2239
|
-
|
|
2240
|
-
public abstract interface class com/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback {
|
|
2241
|
-
public abstract fun onFailure (Ljava/lang/Throwable;)V
|
|
2242
|
-
public abstract fun onSuccess (Ljava/lang/String;)V
|
|
2243
|
-
}
|
|
2244
|
-
|
|
2245
2144
|
public final class com/facebook/react/devsupport/LogBoxModule : com/facebook/fbreact/specs/NativeLogBoxSpec {
|
|
2246
2145
|
public static final field Companion Lcom/facebook/react/devsupport/LogBoxModule$Companion;
|
|
2247
2146
|
public static final field NAME Ljava/lang/String;
|
|
@@ -2254,19 +2153,6 @@ public final class com/facebook/react/devsupport/LogBoxModule : com/facebook/fbr
|
|
|
2254
2153
|
public final class com/facebook/react/devsupport/LogBoxModule$Companion {
|
|
2255
2154
|
}
|
|
2256
2155
|
|
|
2257
|
-
public class com/facebook/react/devsupport/PackagerStatusCheck {
|
|
2258
|
-
public fun <init> ()V
|
|
2259
|
-
public fun <init> (Lokhttp3/OkHttpClient;)V
|
|
2260
|
-
public fun run (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
|
|
2261
|
-
}
|
|
2262
|
-
|
|
2263
|
-
public final class com/facebook/react/devsupport/PerftestDevSupportManager : com/facebook/react/devsupport/ReleaseDevSupportManager {
|
|
2264
|
-
public fun <init> (Landroid/content/Context;)V
|
|
2265
|
-
public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2266
|
-
public fun startInspector ()V
|
|
2267
|
-
public fun stopInspector ()V
|
|
2268
|
-
}
|
|
2269
|
-
|
|
2270
2156
|
public abstract interface class com/facebook/react/devsupport/ReactInstanceDevHelper {
|
|
2271
2157
|
public abstract fun createRootView (Ljava/lang/String;)Landroid/view/View;
|
|
2272
2158
|
public abstract fun destroyRootView (Landroid/view/View;)V
|
|
@@ -2275,22 +2161,10 @@ public abstract interface class com/facebook/react/devsupport/ReactInstanceDevHe
|
|
|
2275
2161
|
public abstract fun getJavaScriptExecutorFactory ()Lcom/facebook/react/bridge/JavaScriptExecutorFactory;
|
|
2276
2162
|
public abstract fun loadBundle (Lcom/facebook/react/bridge/JSBundleLoader;)Lcom/facebook/react/interfaces/TaskInterface;
|
|
2277
2163
|
public abstract fun onJSBundleLoadedFromServer ()V
|
|
2278
|
-
public abstract fun onReloadWithJSDebugger (Lcom/facebook/react/bridge/JavaJSExecutor$Factory;)V
|
|
2279
2164
|
public abstract fun reload (Ljava/lang/String;)V
|
|
2280
2165
|
public abstract fun toggleElementInspector ()V
|
|
2281
2166
|
}
|
|
2282
2167
|
|
|
2283
|
-
public class com/facebook/react/devsupport/RedBoxContentView : android/widget/LinearLayout, android/widget/AdapterView$OnItemClickListener {
|
|
2284
|
-
public fun <init> (Landroid/content/Context;)V
|
|
2285
|
-
public fun init ()V
|
|
2286
|
-
public fun onItemClick (Landroid/widget/AdapterView;Landroid/view/View;IJ)V
|
|
2287
|
-
public fun refreshContentView ()V
|
|
2288
|
-
public fun resetReporting ()V
|
|
2289
|
-
public fun setDevSupportManager (Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)Lcom/facebook/react/devsupport/RedBoxContentView;
|
|
2290
|
-
public fun setExceptionDetails (Ljava/lang/String;[Lcom/facebook/react/devsupport/interfaces/StackFrame;)V
|
|
2291
|
-
public fun setRedBoxHandler (Lcom/facebook/react/devsupport/interfaces/RedBoxHandler;)Lcom/facebook/react/devsupport/RedBoxContentView;
|
|
2292
|
-
}
|
|
2293
|
-
|
|
2294
2168
|
public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebook/react/devsupport/interfaces/DevSupportManager {
|
|
2295
2169
|
public fun <init> ()V
|
|
2296
2170
|
public fun addCustomDevOption (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevOptionHandler;)V
|
|
@@ -2303,7 +2177,6 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2303
2177
|
public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2304
2178
|
public fun getDevSupportEnabled ()Z
|
|
2305
2179
|
public fun getDownloadedJSBundleFile ()Ljava/lang/String;
|
|
2306
|
-
public fun getJSBundleURLForRemoteDebugging ()Ljava/lang/String;
|
|
2307
2180
|
public fun getLastErrorCookie ()I
|
|
2308
2181
|
public fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2309
2182
|
public fun getLastErrorTitle ()Ljava/lang/String;
|
|
@@ -2330,7 +2203,6 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
|
|
|
2330
2203
|
public fun setFpsDebugEnabled (Z)V
|
|
2331
2204
|
public fun setHotModuleReplacementEnabled (Z)V
|
|
2332
2205
|
public fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
|
|
2333
|
-
public fun setRemoteJSDebugEnabled (Z)V
|
|
2334
2206
|
public fun showDevOptionsDialog ()V
|
|
2335
2207
|
public fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
2336
2208
|
public fun showNewJavaError (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
@@ -2373,36 +2245,6 @@ public class com/facebook/react/devsupport/StackTraceHelper$StackFrameImpl : com
|
|
|
2373
2245
|
public fun toJSON ()Lorg/json/JSONObject;
|
|
2374
2246
|
}
|
|
2375
2247
|
|
|
2376
|
-
public class com/facebook/react/devsupport/WebsocketJavaScriptExecutor : com/facebook/react/bridge/JavaJSExecutor {
|
|
2377
|
-
public fun <init> ()V
|
|
2378
|
-
public fun close ()V
|
|
2379
|
-
public fun connect (Ljava/lang/String;Lcom/facebook/react/devsupport/WebsocketJavaScriptExecutor$JSExecutorConnectCallback;)V
|
|
2380
|
-
public fun executeJSCall (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
|
|
2381
|
-
public fun loadBundle (Ljava/lang/String;)V
|
|
2382
|
-
public fun setGlobalVariable (Ljava/lang/String;Ljava/lang/String;)V
|
|
2383
|
-
}
|
|
2384
|
-
|
|
2385
|
-
public abstract interface class com/facebook/react/devsupport/WebsocketJavaScriptExecutor$JSExecutorConnectCallback {
|
|
2386
|
-
public abstract fun onFailure (Ljava/lang/Throwable;)V
|
|
2387
|
-
public abstract fun onSuccess ()V
|
|
2388
|
-
}
|
|
2389
|
-
|
|
2390
|
-
public class com/facebook/react/devsupport/WebsocketJavaScriptExecutor$WebsocketExecutorTimeoutException : java/lang/Exception {
|
|
2391
|
-
public fun <init> (Ljava/lang/String;)V
|
|
2392
|
-
}
|
|
2393
|
-
|
|
2394
|
-
public class com/facebook/react/devsupport/inspector/InspectorNetworkHelper {
|
|
2395
|
-
public static fun loadNetworkResource (Ljava/lang/String;Lcom/facebook/react/devsupport/inspector/InspectorNetworkRequestListener;)V
|
|
2396
|
-
}
|
|
2397
|
-
|
|
2398
|
-
public class com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener {
|
|
2399
|
-
public fun <init> (Lcom/facebook/jni/HybridData;)V
|
|
2400
|
-
public fun onCompletion ()V
|
|
2401
|
-
public fun onData (Ljava/lang/String;)V
|
|
2402
|
-
public fun onError (Ljava/lang/String;)V
|
|
2403
|
-
public fun onHeaders (ILjava/util/Map;)V
|
|
2404
|
-
}
|
|
2405
|
-
|
|
2406
2248
|
public abstract interface class com/facebook/react/devsupport/interfaces/BundleLoadCallback {
|
|
2407
2249
|
public fun onError (Ljava/lang/Exception;)V
|
|
2408
2250
|
public abstract fun onSuccess ()V
|
|
@@ -2440,7 +2282,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
|
|
|
2440
2282
|
public abstract fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
|
|
2441
2283
|
public abstract fun getDevSupportEnabled ()Z
|
|
2442
2284
|
public abstract fun getDownloadedJSBundleFile ()Ljava/lang/String;
|
|
2443
|
-
public abstract fun getJSBundleURLForRemoteDebugging ()Ljava/lang/String;
|
|
2444
2285
|
public abstract fun getLastErrorCookie ()I
|
|
2445
2286
|
public abstract fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
|
|
2446
2287
|
public abstract fun getLastErrorTitle ()Ljava/lang/String;
|
|
@@ -2466,7 +2307,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
|
|
|
2466
2307
|
public abstract fun setFpsDebugEnabled (Z)V
|
|
2467
2308
|
public abstract fun setHotModuleReplacementEnabled (Z)V
|
|
2468
2309
|
public abstract fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
|
|
2469
|
-
public abstract fun setRemoteJSDebugEnabled (Z)V
|
|
2470
2310
|
public abstract fun showDevOptionsDialog ()V
|
|
2471
2311
|
public abstract fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
|
|
2472
2312
|
public abstract fun showNewJavaError (Ljava/lang/String;Ljava/lang/Throwable;)V
|
|
@@ -2611,7 +2451,6 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2611
2451
|
public fun resolveView (I)Landroid/view/View;
|
|
2612
2452
|
public fun sendAccessibilityEvent (II)V
|
|
2613
2453
|
public fun sendAccessibilityEventFromJS (IILjava/lang/String;)V
|
|
2614
|
-
public fun setBinding (Lcom/facebook/react/fabric/FabricUIManagerBinding;)V
|
|
2615
2454
|
public fun setJSResponder (IIIZ)V
|
|
2616
2455
|
public fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
|
|
2617
2456
|
public fun startSurface (Lcom/facebook/react/interfaces/fabric/SurfaceHandler;Landroid/content/Context;Landroid/view/View;)V
|
|
@@ -2622,7 +2461,7 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
|
|
|
2622
2461
|
public fun updateRootLayoutSpecs (IIIII)V
|
|
2623
2462
|
}
|
|
2624
2463
|
|
|
2625
|
-
public class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/facebook/react/bridge/UIManagerProvider {
|
|
2464
|
+
public final class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/facebook/react/bridge/UIManagerProvider {
|
|
2626
2465
|
public fun <init> (Lcom/facebook/react/fabric/ComponentFactory;Lcom/facebook/react/uimanager/ViewManagerRegistry;)V
|
|
2627
2466
|
public fun createUIManager (Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/UIManager;
|
|
2628
2467
|
}
|
|
@@ -2636,19 +2475,6 @@ public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/jni/Hybri
|
|
|
2636
2475
|
public fun updateStateImpl (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2637
2476
|
}
|
|
2638
2477
|
|
|
2639
|
-
public class com/facebook/react/fabric/SurfaceHandlerBinding : com/facebook/jni/HybridClassBase, com/facebook/react/interfaces/fabric/SurfaceHandler {
|
|
2640
|
-
public static final field DISPLAY_MODE_HIDDEN I
|
|
2641
|
-
public static final field DISPLAY_MODE_SUSPENDED I
|
|
2642
|
-
public static final field DISPLAY_MODE_VISIBLE I
|
|
2643
|
-
public fun <init> (Ljava/lang/String;)V
|
|
2644
|
-
public fun getModuleName ()Ljava/lang/String;
|
|
2645
|
-
public fun getSurfaceId ()I
|
|
2646
|
-
public fun isRunning ()Z
|
|
2647
|
-
public fun setLayoutConstraints (IIIIZZF)V
|
|
2648
|
-
public fun setMountable (Z)V
|
|
2649
|
-
public fun setProps (Lcom/facebook/react/bridge/NativeMap;)V
|
|
2650
|
-
}
|
|
2651
|
-
|
|
2652
2478
|
public final class com/facebook/react/fabric/events/EventBeatManager : com/facebook/react/uimanager/events/BatchEventDispatchedListener {
|
|
2653
2479
|
public fun <init> ()V
|
|
2654
2480
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
@@ -3137,7 +2963,6 @@ public final class com/facebook/react/modules/core/TimingModule$Companion {
|
|
|
3137
2963
|
|
|
3138
2964
|
public final class com/facebook/react/modules/debug/DevMenuModule : com/facebook/fbreact/specs/NativeDevMenuSpec {
|
|
3139
2965
|
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
|
|
3140
|
-
public fun debugRemotely (Z)V
|
|
3141
2966
|
public fun reload ()V
|
|
3142
2967
|
public fun setHotLoadingEnabled (Z)V
|
|
3143
2968
|
public fun setProfilingEnabled (Z)V
|
|
@@ -3154,7 +2979,6 @@ public final class com/facebook/react/modules/debug/DevSettingsModule : com/face
|
|
|
3154
2979
|
public fun reloadWithReason (Ljava/lang/String;)V
|
|
3155
2980
|
public fun removeListeners (D)V
|
|
3156
2981
|
public fun setHotLoadingEnabled (Z)V
|
|
3157
|
-
public fun setIsDebuggingRemotely (Z)V
|
|
3158
2982
|
public fun setIsShakeToShowDevMenuEnabled (Z)V
|
|
3159
2983
|
public fun setProfilingEnabled (Z)V
|
|
3160
2984
|
public fun toggleElementInspector ()V
|
|
@@ -3204,7 +3028,6 @@ public abstract interface class com/facebook/react/modules/debug/interfaces/Deve
|
|
|
3204
3028
|
public abstract fun isHotModuleReplacementEnabled ()Z
|
|
3205
3029
|
public abstract fun isJSDevModeEnabled ()Z
|
|
3206
3030
|
public abstract fun isJSMinifyEnabled ()Z
|
|
3207
|
-
public abstract fun isRemoteJSDebugEnabled ()Z
|
|
3208
3031
|
public abstract fun isStartSamplingProfilerOnInit ()Z
|
|
3209
3032
|
public abstract fun setAnimationFpsDebugEnabled (Z)V
|
|
3210
3033
|
public abstract fun setDeviceDebugEnabled (Z)V
|
|
@@ -3213,7 +3036,6 @@ public abstract interface class com/facebook/react/modules/debug/interfaces/Deve
|
|
|
3213
3036
|
public abstract fun setHotModuleReplacementEnabled (Z)V
|
|
3214
3037
|
public abstract fun setJSDevModeEnabled (Z)V
|
|
3215
3038
|
public abstract fun setJSMinifyEnabled (Z)V
|
|
3216
|
-
public abstract fun setRemoteJSDebugEnabled (Z)V
|
|
3217
3039
|
public abstract fun setStartSamplingProfilerOnInit (Z)V
|
|
3218
3040
|
}
|
|
3219
3041
|
|
|
@@ -3298,20 +3120,6 @@ public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Co
|
|
|
3298
3120
|
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;
|
|
3299
3121
|
}
|
|
3300
3122
|
|
|
3301
|
-
public final class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
|
|
3302
|
-
public fun <init> ()V
|
|
3303
|
-
public fun onProducerEvent (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
|
|
3304
|
-
public fun onProducerFinishWithCancellation (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
|
|
3305
|
-
public fun onProducerFinishWithFailure (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;Ljava/util/Map;)V
|
|
3306
|
-
public fun onProducerFinishWithSuccess (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
|
|
3307
|
-
public fun onProducerStart (Ljava/lang/String;Ljava/lang/String;)V
|
|
3308
|
-
public fun onRequestCancellation (Ljava/lang/String;)V
|
|
3309
|
-
public fun onRequestFailure (Lcom/facebook/imagepipeline/request/ImageRequest;Ljava/lang/String;Ljava/lang/Throwable;Z)V
|
|
3310
|
-
public fun onRequestStart (Lcom/facebook/imagepipeline/request/ImageRequest;Ljava/lang/Object;Ljava/lang/String;Z)V
|
|
3311
|
-
public fun onRequestSuccess (Lcom/facebook/imagepipeline/request/ImageRequest;Ljava/lang/String;Z)V
|
|
3312
|
-
public fun requiresExtraMap (Ljava/lang/String;)Z
|
|
3313
|
-
}
|
|
3314
|
-
|
|
3315
3123
|
public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
|
|
3316
3124
|
public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
|
|
3317
3125
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3441,15 +3249,15 @@ public abstract interface class com/facebook/react/modules/network/OkHttpClientF
|
|
|
3441
3249
|
public abstract fun createNewNetworkModuleClient ()Lokhttp3/OkHttpClient;
|
|
3442
3250
|
}
|
|
3443
3251
|
|
|
3444
|
-
public class com/facebook/react/modules/network/OkHttpClientProvider {
|
|
3445
|
-
public
|
|
3446
|
-
public static fun createClient ()Lokhttp3/OkHttpClient;
|
|
3447
|
-
public static fun createClient (Landroid/content/Context;)Lokhttp3/OkHttpClient;
|
|
3448
|
-
public static fun createClientBuilder ()Lokhttp3/OkHttpClient$Builder;
|
|
3449
|
-
public static fun createClientBuilder (Landroid/content/Context;)Lokhttp3/OkHttpClient$Builder;
|
|
3450
|
-
public static fun createClientBuilder (Landroid/content/Context;I)Lokhttp3/OkHttpClient$Builder;
|
|
3451
|
-
public static fun getOkHttpClient ()Lokhttp3/OkHttpClient;
|
|
3452
|
-
public static fun setOkHttpClientFactory (Lcom/facebook/react/modules/network/OkHttpClientFactory;)V
|
|
3252
|
+
public final class com/facebook/react/modules/network/OkHttpClientProvider {
|
|
3253
|
+
public static final field INSTANCE Lcom/facebook/react/modules/network/OkHttpClientProvider;
|
|
3254
|
+
public static final fun createClient ()Lokhttp3/OkHttpClient;
|
|
3255
|
+
public static final fun createClient (Landroid/content/Context;)Lokhttp3/OkHttpClient;
|
|
3256
|
+
public static final fun createClientBuilder ()Lokhttp3/OkHttpClient$Builder;
|
|
3257
|
+
public static final fun createClientBuilder (Landroid/content/Context;)Lokhttp3/OkHttpClient$Builder;
|
|
3258
|
+
public static final fun createClientBuilder (Landroid/content/Context;I)Lokhttp3/OkHttpClient$Builder;
|
|
3259
|
+
public static final fun getOkHttpClient ()Lokhttp3/OkHttpClient;
|
|
3260
|
+
public static final fun setOkHttpClientFactory (Lcom/facebook/react/modules/network/OkHttpClientFactory;)V
|
|
3453
3261
|
}
|
|
3454
3262
|
|
|
3455
3263
|
public class com/facebook/react/modules/network/OkHttpCompat {
|
|
@@ -3470,18 +3278,6 @@ public class com/facebook/react/modules/network/ProgressResponseBody : okhttp3/R
|
|
|
3470
3278
|
public fun totalBytesRead ()J
|
|
3471
3279
|
}
|
|
3472
3280
|
|
|
3473
|
-
public class com/facebook/react/modules/network/ResponseUtil {
|
|
3474
|
-
public fun <init> ()V
|
|
3475
|
-
public static fun onDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILcom/facebook/react/bridge/WritableMap;)V
|
|
3476
|
-
public static fun onDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILjava/lang/String;)V
|
|
3477
|
-
public static fun onDataReceivedProgress (Lcom/facebook/react/bridge/ReactApplicationContext;IJJ)V
|
|
3478
|
-
public static fun onDataSend (Lcom/facebook/react/bridge/ReactApplicationContext;IJJ)V
|
|
3479
|
-
public static fun onIncrementalDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILjava/lang/String;JJ)V
|
|
3480
|
-
public static fun onRequestError (Lcom/facebook/react/bridge/ReactApplicationContext;ILjava/lang/String;Ljava/lang/Throwable;)V
|
|
3481
|
-
public static fun onRequestSuccess (Lcom/facebook/react/bridge/ReactApplicationContext;I)V
|
|
3482
|
-
public static fun onResponseReceived (Lcom/facebook/react/bridge/ReactApplicationContext;IILcom/facebook/react/bridge/WritableMap;Ljava/lang/String;)V
|
|
3483
|
-
}
|
|
3484
|
-
|
|
3485
3281
|
public final class com/facebook/react/modules/network/ReactCookieJarContainer : com/facebook/react/modules/network/CookieJarContainer {
|
|
3486
3282
|
public fun <init> ()V
|
|
3487
3283
|
public fun loadForRequest (Lokhttp3/HttpUrl;)Ljava/util/List;
|
|
@@ -3490,17 +3286,6 @@ public final class com/facebook/react/modules/network/ReactCookieJarContainer :
|
|
|
3490
3286
|
public fun setCookieJar (Lokhttp3/CookieJar;)V
|
|
3491
3287
|
}
|
|
3492
3288
|
|
|
3493
|
-
public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl/SSLSocketFactory {
|
|
3494
|
-
public fun <init> ()V
|
|
3495
|
-
public fun createSocket (Ljava/lang/String;I)Ljava/net/Socket;
|
|
3496
|
-
public fun createSocket (Ljava/lang/String;ILjava/net/InetAddress;I)Ljava/net/Socket;
|
|
3497
|
-
public fun createSocket (Ljava/net/InetAddress;I)Ljava/net/Socket;
|
|
3498
|
-
public fun createSocket (Ljava/net/InetAddress;ILjava/net/InetAddress;I)Ljava/net/Socket;
|
|
3499
|
-
public fun createSocket (Ljava/net/Socket;Ljava/lang/String;IZ)Ljava/net/Socket;
|
|
3500
|
-
public fun getDefaultCipherSuites ()[Ljava/lang/String;
|
|
3501
|
-
public fun getSupportedCipherSuites ()[Ljava/lang/String;
|
|
3502
|
-
}
|
|
3503
|
-
|
|
3504
3289
|
public final class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
|
|
3505
3290
|
public static final field Companion Lcom/facebook/react/modules/permissions/PermissionsModule$Companion;
|
|
3506
3291
|
public static final field NAME Ljava/lang/String;
|
|
@@ -3812,39 +3597,6 @@ public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebo
|
|
|
3812
3597
|
public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
|
|
3813
3598
|
}
|
|
3814
3599
|
|
|
3815
|
-
public class com/facebook/react/runtime/internal/bolts/Task : com/facebook/react/interfaces/TaskInterface {
|
|
3816
|
-
public static final field IMMEDIATE_EXECUTOR Ljava/util/concurrent/Executor;
|
|
3817
|
-
public static final field UI_THREAD_EXECUTOR Ljava/util/concurrent/Executor;
|
|
3818
|
-
public static fun call (Ljava/util/concurrent/Callable;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3819
|
-
public static fun call (Ljava/util/concurrent/Callable;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3820
|
-
public static fun cancelled ()Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3821
|
-
public fun continueWith (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3822
|
-
public fun continueWith (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3823
|
-
public fun continueWithTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3824
|
-
public fun continueWithTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3825
|
-
public static fun create ()Lcom/facebook/react/runtime/internal/bolts/TaskCompletionSource;
|
|
3826
|
-
public static fun forError (Ljava/lang/Exception;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3827
|
-
public static fun forResult (Ljava/lang/Object;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3828
|
-
public fun getError ()Ljava/lang/Exception;
|
|
3829
|
-
public fun getResult ()Ljava/lang/Object;
|
|
3830
|
-
public static fun getUnobservedExceptionHandler ()Lcom/facebook/react/runtime/internal/bolts/Task$UnobservedExceptionHandler;
|
|
3831
|
-
public fun isCancelled ()Z
|
|
3832
|
-
public fun isCompleted ()Z
|
|
3833
|
-
public fun isFaulted ()Z
|
|
3834
|
-
public fun makeVoid ()Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3835
|
-
public fun onSuccess (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3836
|
-
public fun onSuccess (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3837
|
-
public fun onSuccessTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3838
|
-
public fun onSuccessTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
|
|
3839
|
-
public static fun setUnobservedExceptionHandler (Lcom/facebook/react/runtime/internal/bolts/Task$UnobservedExceptionHandler;)V
|
|
3840
|
-
public fun waitForCompletion ()V
|
|
3841
|
-
public fun waitForCompletion (JLjava/util/concurrent/TimeUnit;)Z
|
|
3842
|
-
}
|
|
3843
|
-
|
|
3844
|
-
public abstract interface class com/facebook/react/runtime/internal/bolts/Task$UnobservedExceptionHandler {
|
|
3845
|
-
public abstract fun unobservedException (Lcom/facebook/react/runtime/internal/bolts/Task;Lcom/facebook/react/runtime/internal/bolts/UnobservedTaskException;)V
|
|
3846
|
-
}
|
|
3847
|
-
|
|
3848
3600
|
public final class com/facebook/react/shell/MainPackageConfig {
|
|
3849
3601
|
public fun <init> (Lcom/facebook/imagepipeline/core/ImagePipelineConfig;)V
|
|
3850
3602
|
public final fun getFrescoConfig ()Lcom/facebook/imagepipeline/core/ImagePipelineConfig;
|
|
@@ -4044,11 +3796,14 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
|
|
|
4044
3796
|
public fun setTranslateY (Landroid/view/View;F)V
|
|
4045
3797
|
public fun setViewState (Landroid/view/View;Lcom/facebook/react/bridge/ReadableMap;)V
|
|
4046
3798
|
public fun setZIndex (Landroid/view/View;F)V
|
|
3799
|
+
protected fun updateViewAccessibility (Landroid/view/View;)V
|
|
4047
3800
|
}
|
|
4048
3801
|
|
|
4049
3802
|
public abstract class com/facebook/react/uimanager/BaseViewManagerDelegate : com/facebook/react/uimanager/ViewManagerDelegate {
|
|
4050
3803
|
protected final field mViewManager Lcom/facebook/react/uimanager/BaseViewManager;
|
|
4051
3804
|
public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
|
|
3805
|
+
public synthetic fun kotlinCompat$receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
3806
|
+
public synthetic fun kotlinCompat$setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4052
3807
|
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4053
3808
|
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4054
3809
|
}
|
|
@@ -4164,6 +3919,7 @@ public final class com/facebook/react/uimanager/LengthPercentage {
|
|
|
4164
3919
|
public fun equals (Ljava/lang/Object;)Z
|
|
4165
3920
|
public final fun getType ()Lcom/facebook/react/uimanager/LengthPercentageType;
|
|
4166
3921
|
public fun hashCode ()I
|
|
3922
|
+
public final fun resolve (F)F
|
|
4167
3923
|
public final fun resolve (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
|
|
4168
3924
|
public static final fun setFromDynamic (Lcom/facebook/react/bridge/Dynamic;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
4169
3925
|
public fun toString ()Ljava/lang/String;
|
|
@@ -4226,15 +3982,6 @@ public final class com/facebook/react/uimanager/MeasureSpecAssertions {
|
|
|
4226
3982
|
public static final fun assertExplicitMeasureSpec (II)V
|
|
4227
3983
|
}
|
|
4228
3984
|
|
|
4229
|
-
public final class com/facebook/react/uimanager/NativeKind : java/lang/Enum {
|
|
4230
|
-
public static final field LEAF Lcom/facebook/react/uimanager/NativeKind;
|
|
4231
|
-
public static final field NONE Lcom/facebook/react/uimanager/NativeKind;
|
|
4232
|
-
public static final field PARENT Lcom/facebook/react/uimanager/NativeKind;
|
|
4233
|
-
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
4234
|
-
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/NativeKind;
|
|
4235
|
-
public static fun values ()[Lcom/facebook/react/uimanager/NativeKind;
|
|
4236
|
-
}
|
|
4237
|
-
|
|
4238
3985
|
public class com/facebook/react/uimanager/NativeViewHierarchyManager {
|
|
4239
3986
|
public fun <init> (Lcom/facebook/react/uimanager/ViewManagerRegistry;)V
|
|
4240
3987
|
public fun <init> (Lcom/facebook/react/uimanager/ViewManagerRegistry;Lcom/facebook/react/uimanager/RootViewManager;)V
|
|
@@ -4334,7 +4081,7 @@ public class com/facebook/react/uimanager/ReactAccessibilityDelegate : androidx/
|
|
|
4334
4081
|
public fun <init> (Landroid/view/View;ZI)V
|
|
4335
4082
|
public static fun createNodeInfoFromView (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;
|
|
4336
4083
|
public fun getAccessibilityNodeProvider (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
|
|
4337
|
-
protected fun
|
|
4084
|
+
protected fun getHostView ()Landroid/view/View;
|
|
4338
4085
|
public static fun getTalkbackDescription (Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Ljava/lang/CharSequence;
|
|
4339
4086
|
protected fun getVirtualViewAt (FF)I
|
|
4340
4087
|
protected fun getVisibleVirtualViews (Ljava/util/List;)V
|
|
@@ -4352,13 +4099,7 @@ public class com/facebook/react/uimanager/ReactAccessibilityDelegate : androidx/
|
|
|
4352
4099
|
public static fun resetDelegate (Landroid/view/View;ZI)V
|
|
4353
4100
|
public static fun setDelegate (Landroid/view/View;ZI)V
|
|
4354
4101
|
public static fun setRole (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;Landroid/content/Context;)V
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
public class com/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityLinks {
|
|
4358
|
-
public fun <init> ([Landroid/text/style/ClickableSpan;Landroid/text/Spannable;)V
|
|
4359
|
-
public fun getLinkById (I)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityLinks$AccessibleLink;
|
|
4360
|
-
public fun getLinkBySpanPos (II)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityLinks$AccessibleLink;
|
|
4361
|
-
public fun size ()I
|
|
4102
|
+
public fun superGetAccessibilityNodeProvider (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
|
|
4362
4103
|
}
|
|
4363
4104
|
|
|
4364
4105
|
public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole : java/lang/Enum {
|
|
@@ -4512,11 +4253,6 @@ public abstract interface class com/facebook/react/uimanager/ReactOverflowView {
|
|
|
4512
4253
|
public abstract fun getOverflow ()Ljava/lang/String;
|
|
4513
4254
|
}
|
|
4514
4255
|
|
|
4515
|
-
public abstract interface class com/facebook/react/uimanager/ReactOverflowViewWithInset : com/facebook/react/uimanager/ReactOverflowView {
|
|
4516
|
-
public abstract fun getOverflowInset ()Landroid/graphics/Rect;
|
|
4517
|
-
public abstract fun setOverflowInset (IIII)V
|
|
4518
|
-
}
|
|
4519
|
-
|
|
4520
4256
|
public abstract interface class com/facebook/react/uimanager/ReactPointerEventsView {
|
|
4521
4257
|
public abstract fun getPointerEvents ()Lcom/facebook/react/uimanager/PointerEvents;
|
|
4522
4258
|
}
|
|
@@ -4808,6 +4544,19 @@ public class com/facebook/react/uimanager/ReactShadowNodeImpl : com/facebook/rea
|
|
|
4808
4544
|
}
|
|
4809
4545
|
|
|
4810
4546
|
public abstract interface annotation class com/facebook/react/uimanager/ReactStage : java/lang/annotation/Annotation {
|
|
4547
|
+
public static final field BRIDGE_DID_LOAD I
|
|
4548
|
+
public static final field Companion Lcom/facebook/react/uimanager/ReactStage$Companion;
|
|
4549
|
+
public static final field MODULE_DID_LOAD I
|
|
4550
|
+
public static final field ON_ATTACH_TO_INSTANCE I
|
|
4551
|
+
public static final field SURFACE_DID_INITIALIZE I
|
|
4552
|
+
public static final field SURFACE_DID_INITIAL_LAYOUT I
|
|
4553
|
+
public static final field SURFACE_DID_INITIAL_MOUNTING I
|
|
4554
|
+
public static final field SURFACE_DID_INITIAL_RENDERING I
|
|
4555
|
+
public static final field SURFACE_DID_RUN I
|
|
4556
|
+
public static final field SURFACE_DID_STOP I
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4559
|
+
public final class com/facebook/react/uimanager/ReactStage$Companion {
|
|
4811
4560
|
public static final field BRIDGE_DID_LOAD I
|
|
4812
4561
|
public static final field MODULE_DID_LOAD I
|
|
4813
4562
|
public static final field ON_ATTACH_TO_INSTANCE I
|
|
@@ -4835,11 +4584,6 @@ public class com/facebook/react/uimanager/ReactStylesDiffMap {
|
|
|
4835
4584
|
public fun toString ()Ljava/lang/String;
|
|
4836
4585
|
}
|
|
4837
4586
|
|
|
4838
|
-
public final class com/facebook/react/uimanager/ReactYogaConfigProvider {
|
|
4839
|
-
public static final field INSTANCE Lcom/facebook/react/uimanager/ReactYogaConfigProvider;
|
|
4840
|
-
public static final fun get ()Lcom/facebook/yoga/YogaConfig;
|
|
4841
|
-
}
|
|
4842
|
-
|
|
4843
4587
|
public abstract interface class com/facebook/react/uimanager/ReactZIndexedViewGroup {
|
|
4844
4588
|
public abstract fun getZIndexMappedChildIndex (I)I
|
|
4845
4589
|
public abstract fun updateDrawingOrder ()V
|
|
@@ -5239,17 +4983,19 @@ public abstract class com/facebook/react/uimanager/ViewManager : com/facebook/re
|
|
|
5239
4983
|
}
|
|
5240
4984
|
|
|
5241
4985
|
public abstract interface class com/facebook/react/uimanager/ViewManagerDelegate {
|
|
5242
|
-
public abstract fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
5243
|
-
public abstract fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4986
|
+
public abstract synthetic fun kotlinCompat$receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4987
|
+
public abstract synthetic fun kotlinCompat$setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
4988
|
+
public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
4989
|
+
public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
|
|
5244
4990
|
}
|
|
5245
4991
|
|
|
5246
|
-
public class com/facebook/react/uimanager/ViewManagerPropertyUpdater {
|
|
5247
|
-
public
|
|
5248
|
-
public static fun clear ()V
|
|
5249
|
-
public static fun getNativeProps (Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/Map;
|
|
5250
|
-
public static fun updateProps (Lcom/facebook/react/uimanager/ReactShadowNode;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5251
|
-
public static fun updateProps (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5252
|
-
public static fun updateProps (Lcom/facebook/react/uimanager/ViewManagerDelegate;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
4992
|
+
public final class com/facebook/react/uimanager/ViewManagerPropertyUpdater {
|
|
4993
|
+
public static final field INSTANCE Lcom/facebook/react/uimanager/ViewManagerPropertyUpdater;
|
|
4994
|
+
public static final fun clear ()V
|
|
4995
|
+
public static final fun getNativeProps (Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/Map;
|
|
4996
|
+
public static final fun updateProps (Lcom/facebook/react/uimanager/ReactShadowNode;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
4997
|
+
public static final fun updateProps (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
4998
|
+
public static final fun updateProps (Lcom/facebook/react/uimanager/ViewManagerDelegate;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
|
|
5253
4999
|
}
|
|
5254
5000
|
|
|
5255
5001
|
public abstract interface class com/facebook/react/uimanager/ViewManagerPropertyUpdater$Settable {
|
|
@@ -5487,25 +5233,6 @@ public abstract interface class com/facebook/react/uimanager/events/BatchEventDi
|
|
|
5487
5233
|
public abstract fun onBatchEventDispatched ()V
|
|
5488
5234
|
}
|
|
5489
5235
|
|
|
5490
|
-
public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/facebook/react/uimanager/events/EventDispatcher {
|
|
5491
|
-
public static final field Companion Lcom/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion;
|
|
5492
|
-
public fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5493
|
-
public fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5494
|
-
public fun dispatchAllEvents ()V
|
|
5495
|
-
public fun dispatchEvent (Lcom/facebook/react/uimanager/events/Event;)V
|
|
5496
|
-
public static final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5497
|
-
public fun onCatalystInstanceDestroyed ()V
|
|
5498
|
-
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
|
|
5499
|
-
public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
|
|
5500
|
-
public fun removeBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
|
|
5501
|
-
public fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
|
|
5502
|
-
public fun unregisterEventEmitter (I)V
|
|
5503
|
-
}
|
|
5504
|
-
|
|
5505
|
-
public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion {
|
|
5506
|
-
public final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
|
|
5507
|
-
}
|
|
5508
|
-
|
|
5509
5236
|
public final class com/facebook/react/uimanager/events/ContentSizeChangeEvent : com/facebook/react/uimanager/events/Event {
|
|
5510
5237
|
public fun <init> (III)V
|
|
5511
5238
|
public fun <init> (IIII)V
|
|
@@ -5705,10 +5432,6 @@ public abstract interface class com/facebook/react/uimanager/events/RCTModernEve
|
|
|
5705
5432
|
public abstract fun receiveTouches (Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5706
5433
|
}
|
|
5707
5434
|
|
|
5708
|
-
public abstract interface class com/facebook/react/uimanager/events/SynchronousEventReceiver {
|
|
5709
|
-
public abstract fun receiveEvent (IILjava/lang/String;ZLcom/facebook/react/bridge/WritableMap;IZ)V
|
|
5710
|
-
}
|
|
5711
|
-
|
|
5712
5435
|
public final class com/facebook/react/uimanager/events/TouchEvent : com/facebook/react/uimanager/events/Event {
|
|
5713
5436
|
public static final field Companion Lcom/facebook/react/uimanager/events/TouchEvent$Companion;
|
|
5714
5437
|
public static final field UNSET J
|
|
@@ -5765,23 +5488,6 @@ public final class com/facebook/react/uimanager/events/TouchesHelper {
|
|
|
5765
5488
|
public static final fun sendTouchesLegacy (Lcom/facebook/react/uimanager/events/RCTEventEmitter;Lcom/facebook/react/uimanager/events/TouchEvent;)V
|
|
5766
5489
|
}
|
|
5767
5490
|
|
|
5768
|
-
public final class com/facebook/react/uimanager/layoutanimation/InterpolatorType : java/lang/Enum {
|
|
5769
|
-
public static final field Companion Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType$Companion;
|
|
5770
|
-
public static final field EASE_IN Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5771
|
-
public static final field EASE_IN_EASE_OUT Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5772
|
-
public static final field EASE_OUT Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5773
|
-
public static final field LINEAR Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5774
|
-
public static final field SPRING Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5775
|
-
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5776
|
-
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
5777
|
-
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5778
|
-
public static fun values ()[Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5779
|
-
}
|
|
5780
|
-
|
|
5781
|
-
public final class com/facebook/react/uimanager/layoutanimation/InterpolatorType$Companion {
|
|
5782
|
-
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
|
|
5783
|
-
}
|
|
5784
|
-
|
|
5785
5491
|
public class com/facebook/react/uimanager/layoutanimation/LayoutAnimationController {
|
|
5786
5492
|
public fun <init> ()V
|
|
5787
5493
|
public fun applyLayoutUpdate (Landroid/view/View;IIII)V
|
|
@@ -5819,61 +5525,6 @@ public final class com/facebook/react/uimanager/style/BorderRadiusProp : java/la
|
|
|
5819
5525
|
public static fun values ()[Lcom/facebook/react/uimanager/style/BorderRadiusProp;
|
|
5820
5526
|
}
|
|
5821
5527
|
|
|
5822
|
-
public final class com/facebook/react/uimanager/style/BorderRadiusStyle {
|
|
5823
|
-
public fun <init> ()V
|
|
5824
|
-
public fun <init> (Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5825
|
-
public synthetic fun <init> (Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
5826
|
-
public fun <init> (Ljava/util/List;)V
|
|
5827
|
-
public final fun component1 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5828
|
-
public final fun component10 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5829
|
-
public final fun component11 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5830
|
-
public final fun component12 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5831
|
-
public final fun component13 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5832
|
-
public final fun component2 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5833
|
-
public final fun component3 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5834
|
-
public final fun component4 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5835
|
-
public final fun component5 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5836
|
-
public final fun component6 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5837
|
-
public final fun component7 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5838
|
-
public final fun component8 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5839
|
-
public final fun component9 ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5840
|
-
public final fun copy (Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;)Lcom/facebook/react/uimanager/style/BorderRadiusStyle;
|
|
5841
|
-
public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/BorderRadiusStyle;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;ILjava/lang/Object;)Lcom/facebook/react/uimanager/style/BorderRadiusStyle;
|
|
5842
|
-
public fun equals (Ljava/lang/Object;)Z
|
|
5843
|
-
public final fun get (Lcom/facebook/react/uimanager/style/BorderRadiusProp;)Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5844
|
-
public final fun getBottomEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5845
|
-
public final fun getBottomLeft ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5846
|
-
public final fun getBottomRight ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5847
|
-
public final fun getBottomStart ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5848
|
-
public final fun getEndEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5849
|
-
public final fun getEndStart ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5850
|
-
public final fun getStartEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5851
|
-
public final fun getStartStart ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5852
|
-
public final fun getTopEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5853
|
-
public final fun getTopLeft ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5854
|
-
public final fun getTopRight ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5855
|
-
public final fun getTopStart ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5856
|
-
public final fun getUniform ()Lcom/facebook/react/uimanager/LengthPercentage;
|
|
5857
|
-
public final fun hasRoundedBorders ()Z
|
|
5858
|
-
public fun hashCode ()I
|
|
5859
|
-
public final fun resolve (ILandroid/content/Context;FF)Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
|
|
5860
|
-
public final fun set (Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5861
|
-
public final fun setBottomEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5862
|
-
public final fun setBottomLeft (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5863
|
-
public final fun setBottomRight (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5864
|
-
public final fun setBottomStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5865
|
-
public final fun setEndEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5866
|
-
public final fun setEndStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5867
|
-
public final fun setStartEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5868
|
-
public final fun setStartStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5869
|
-
public final fun setTopEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5870
|
-
public final fun setTopLeft (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5871
|
-
public final fun setTopRight (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5872
|
-
public final fun setTopStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5873
|
-
public final fun setUniform (Lcom/facebook/react/uimanager/LengthPercentage;)V
|
|
5874
|
-
public fun toString ()Ljava/lang/String;
|
|
5875
|
-
}
|
|
5876
|
-
|
|
5877
5528
|
public final class com/facebook/react/uimanager/style/BorderStyle : java/lang/Enum {
|
|
5878
5529
|
public static final field Companion Lcom/facebook/react/uimanager/style/BorderStyle$Companion;
|
|
5879
5530
|
public static final field DASHED Lcom/facebook/react/uimanager/style/BorderStyle;
|
|
@@ -6005,21 +5656,6 @@ public final class com/facebook/react/uimanager/style/OutlineStyle$Companion {
|
|
|
6005
5656
|
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
|
|
6006
5657
|
}
|
|
6007
5658
|
|
|
6008
|
-
public final class com/facebook/react/uimanager/style/Overflow : java/lang/Enum {
|
|
6009
|
-
public static final field Companion Lcom/facebook/react/uimanager/style/Overflow$Companion;
|
|
6010
|
-
public static final field HIDDEN Lcom/facebook/react/uimanager/style/Overflow;
|
|
6011
|
-
public static final field SCROLL Lcom/facebook/react/uimanager/style/Overflow;
|
|
6012
|
-
public static final field VISIBLE Lcom/facebook/react/uimanager/style/Overflow;
|
|
6013
|
-
public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6014
|
-
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
6015
|
-
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6016
|
-
public static fun values ()[Lcom/facebook/react/uimanager/style/Overflow;
|
|
6017
|
-
}
|
|
6018
|
-
|
|
6019
|
-
public final class com/facebook/react/uimanager/style/Overflow$Companion {
|
|
6020
|
-
public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
|
|
6021
|
-
}
|
|
6022
|
-
|
|
6023
5659
|
public final class com/facebook/react/uimanager/util/ReactFindViewUtil {
|
|
6024
5660
|
public static final field INSTANCE Lcom/facebook/react/uimanager/util/ReactFindViewUtil;
|
|
6025
5661
|
public static final fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
|
|
@@ -6040,12 +5676,6 @@ public abstract interface class com/facebook/react/uimanager/util/ReactFindViewU
|
|
|
6040
5676
|
public abstract fun onViewFound (Landroid/view/View;)V
|
|
6041
5677
|
}
|
|
6042
5678
|
|
|
6043
|
-
public final class com/facebook/react/util/ExceptionDataHelper {
|
|
6044
|
-
public static final field EXTRA_DATA_FIELD Ljava/lang/String;
|
|
6045
|
-
public static final field INSTANCE Lcom/facebook/react/util/ExceptionDataHelper;
|
|
6046
|
-
public static final fun getExtraDataAsJson (Lcom/facebook/react/bridge/ReadableMap;)Ljava/lang/String;
|
|
6047
|
-
}
|
|
6048
|
-
|
|
6049
5679
|
public final class com/facebook/react/util/JSStackTrace {
|
|
6050
5680
|
public static final field COLUMN_KEY Ljava/lang/String;
|
|
6051
5681
|
public static final field FILE_KEY Ljava/lang/String;
|
|
@@ -6055,10 +5685,6 @@ public final class com/facebook/react/util/JSStackTrace {
|
|
|
6055
5685
|
public static final fun format (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
|
6056
5686
|
}
|
|
6057
5687
|
|
|
6058
|
-
public abstract interface class com/facebook/react/util/RCTLog : com/facebook/react/bridge/JavaScriptModule {
|
|
6059
|
-
public abstract fun logIfNoNativeHook (Ljava/lang/String;Ljava/lang/String;)V
|
|
6060
|
-
}
|
|
6061
|
-
|
|
6062
5688
|
public final class com/facebook/react/util/RNLog {
|
|
6063
5689
|
public static final field ADVICE I
|
|
6064
5690
|
public static final field ERROR I
|
|
@@ -6215,47 +5841,6 @@ public final class com/facebook/react/views/common/ContextUtils {
|
|
|
6215
5841
|
public static final fun findContextOfType (Landroid/content/Context;Ljava/lang/Class;)Ljava/lang/Object;
|
|
6216
5842
|
}
|
|
6217
5843
|
|
|
6218
|
-
public final class com/facebook/react/views/common/ViewUtils {
|
|
6219
|
-
public static final field INSTANCE Lcom/facebook/react/views/common/ViewUtils;
|
|
6220
|
-
public static final fun getTestId (Landroid/view/View;)Ljava/lang/String;
|
|
6221
|
-
}
|
|
6222
|
-
|
|
6223
|
-
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlay : android/view/View {
|
|
6224
|
-
public fun <init> (Landroid/content/Context;)V
|
|
6225
|
-
public final fun clearElementsHighlights ()V
|
|
6226
|
-
public fun onDraw (Landroid/graphics/Canvas;)V
|
|
6227
|
-
public final fun setHighlightedElementsRectangles (Ljava/util/List;)V
|
|
6228
|
-
public final fun setTraceUpdates (Ljava/util/List;)V
|
|
6229
|
-
}
|
|
6230
|
-
|
|
6231
|
-
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface {
|
|
6232
|
-
public static final field Companion Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion;
|
|
6233
|
-
public static final field REACT_CLASS Ljava/lang/String;
|
|
6234
|
-
public fun <init> ()V
|
|
6235
|
-
public synthetic fun clearElementsHighlights (Landroid/view/View;)V
|
|
6236
|
-
public fun clearElementsHighlights (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;)V
|
|
6237
|
-
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
|
|
6238
|
-
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;
|
|
6239
|
-
public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
|
|
6240
|
-
public fun getName ()Ljava/lang/String;
|
|
6241
|
-
public synthetic fun highlightElements (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6242
|
-
public fun highlightElements (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6243
|
-
public synthetic fun highlightTraceUpdates (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6244
|
-
public fun highlightTraceUpdates (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6245
|
-
public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6246
|
-
public fun receiveCommand (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
|
|
6247
|
-
}
|
|
6248
|
-
|
|
6249
|
-
public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion {
|
|
6250
|
-
}
|
|
6251
|
-
|
|
6252
|
-
public final class com/facebook/react/views/debuggingoverlay/TraceUpdate {
|
|
6253
|
-
public fun <init> (ILandroid/graphics/RectF;I)V
|
|
6254
|
-
public final fun getColor ()I
|
|
6255
|
-
public final fun getId ()I
|
|
6256
|
-
public final fun getRectangle ()Landroid/graphics/RectF;
|
|
6257
|
-
}
|
|
6258
|
-
|
|
6259
5844
|
public final class com/facebook/react/views/drawer/ReactDrawerLayout : androidx/drawerlayout/widget/DrawerLayout {
|
|
6260
5845
|
public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
|
|
6261
5846
|
public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
|
|
@@ -6415,19 +6000,6 @@ public final class com/facebook/react/views/image/ImageResizeMode {
|
|
|
6415
6000
|
public static final fun toTileMode (Ljava/lang/String;)Landroid/graphics/Shader$TileMode;
|
|
6416
6001
|
}
|
|
6417
6002
|
|
|
6418
|
-
public final class com/facebook/react/views/image/MultiPostprocessor : com/facebook/imagepipeline/request/Postprocessor {
|
|
6419
|
-
public static final field Companion Lcom/facebook/react/views/image/MultiPostprocessor$Companion;
|
|
6420
|
-
public synthetic fun <init> (Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
6421
|
-
public static final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
|
|
6422
|
-
public fun getName ()Ljava/lang/String;
|
|
6423
|
-
public fun getPostprocessorCacheKey ()Lcom/facebook/cache/common/CacheKey;
|
|
6424
|
-
public fun process (Landroid/graphics/Bitmap;Lcom/facebook/imagepipeline/bitmaps/PlatformBitmapFactory;)Lcom/facebook/common/references/CloseableReference;
|
|
6425
|
-
}
|
|
6426
|
-
|
|
6427
|
-
public final class com/facebook/react/views/image/MultiPostprocessor$Companion {
|
|
6428
|
-
public final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
|
|
6429
|
-
}
|
|
6430
|
-
|
|
6431
6003
|
public abstract interface class com/facebook/react/views/image/ReactCallerContextFactory {
|
|
6432
6004
|
public abstract fun getOrCreateCallerContext (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
|
|
6433
6005
|
}
|
|
@@ -6670,7 +6242,7 @@ public final class com/facebook/react/views/scroll/ReactHorizontalScrollContaine
|
|
|
6670
6242
|
public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$Companion {
|
|
6671
6243
|
}
|
|
6672
6244
|
|
|
6673
|
-
public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android/widget/HorizontalScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
|
|
6245
|
+
public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android/widget/HorizontalScrollView, 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 {
|
|
6674
6246
|
public fun <init> (Landroid/content/Context;)V
|
|
6675
6247
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
6676
6248
|
public fun abortAnimation ()V
|
|
@@ -6795,7 +6367,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
|
|
|
6795
6367
|
public fun updateState (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6796
6368
|
}
|
|
6797
6369
|
|
|
6798
|
-
public class com/facebook/react/views/scroll/ReactScrollView : android/widget/ScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
|
|
6370
|
+
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 {
|
|
6799
6371
|
public fun <init> (Landroid/content/Context;)V
|
|
6800
6372
|
public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
|
|
6801
6373
|
public fun abortAnimation ()V
|
|
@@ -6818,6 +6390,7 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
|
|
|
6818
6390
|
public fun getScrollEventThrottle ()I
|
|
6819
6391
|
public fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
|
|
6820
6392
|
protected fun handleInterceptedTouchEvent (Landroid/view/MotionEvent;)V
|
|
6393
|
+
public fun isPartiallyScrolledInView (Landroid/view/View;)Z
|
|
6821
6394
|
protected fun onAttachedToWindow ()V
|
|
6822
6395
|
public fun onChildViewAdded (Landroid/view/View;Landroid/view/View;)V
|
|
6823
6396
|
public fun onChildViewRemoved (Landroid/view/View;Landroid/view/View;)V
|
|
@@ -7257,6 +6830,7 @@ public final class com/facebook/react/views/text/ReactTextUpdate$Companion {
|
|
|
7257
6830
|
public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/widget/AppCompatTextView, com/facebook/react/uimanager/ReactCompoundView {
|
|
7258
6831
|
public fun <init> (Landroid/content/Context;)V
|
|
7259
6832
|
protected fun dispatchHoverEvent (Landroid/view/MotionEvent;)Z
|
|
6833
|
+
public fun dispatchKeyEvent (Landroid/view/KeyEvent;)Z
|
|
7260
6834
|
public fun getSpanned ()Landroid/text/Spannable;
|
|
7261
6835
|
public fun hasOverlappingRendering ()Z
|
|
7262
6836
|
public fun invalidateDrawable (Landroid/graphics/drawable/Drawable;)V
|
|
@@ -7264,6 +6838,7 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
|
|
|
7264
6838
|
public fun onDetachedFromWindow ()V
|
|
7265
6839
|
protected fun onDraw (Landroid/graphics/Canvas;)V
|
|
7266
6840
|
public fun onFinishTemporaryDetach ()V
|
|
6841
|
+
public final fun onFocusChanged (ZILandroid/graphics/Rect;)V
|
|
7267
6842
|
protected fun onLayout (ZIIII)V
|
|
7268
6843
|
protected fun onMeasure (II)V
|
|
7269
6844
|
public fun onStartTemporaryDetach ()V
|
|
@@ -7318,6 +6893,8 @@ public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/r
|
|
|
7318
6893
|
public fun updateExtraData (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/Object;)V
|
|
7319
6894
|
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
7320
6895
|
public fun updateState (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
|
|
6896
|
+
protected synthetic fun updateViewAccessibility (Landroid/view/View;)V
|
|
6897
|
+
protected fun updateViewAccessibility (Lcom/facebook/react/views/text/ReactTextView;)V
|
|
7321
6898
|
}
|
|
7322
6899
|
|
|
7323
6900
|
public abstract interface class com/facebook/react/views/text/ReactTextViewManagerCallback {
|
|
@@ -7828,8 +7405,3 @@ public final class com/facebook/react/views/view/ViewGroupClickEvent : com/faceb
|
|
|
7828
7405
|
public fun getEventName ()Ljava/lang/String;
|
|
7829
7406
|
}
|
|
7830
7407
|
|
|
7831
|
-
public final class com/facebook/react/views/view/WindowUtilKt {
|
|
7832
|
-
public static final fun setStatusBarTranslucency (Landroid/view/Window;Z)V
|
|
7833
|
-
public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
|
|
7834
|
-
public static final fun setSystemBarsTranslucency (Landroid/view/Window;Z)V
|
|
7835
|
-
}
|