You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary:
Migrate com.facebook.react.views.text.ReactTextViewManager to Kotlin.
In this diff, `ReactTextAnchorViewManager` is made public again as it's extended by `ReactTextViewManager`.
## Changelog:
[INTERNAL] - Migrate com.facebook.react.views.text.ReactTextViewManager to Kotlin
Pull Request resolved: #51721
Test Plan:
```bash
yarn test-android
yarn android
```
Reviewed By: mdvacca
Differential Revision: D75829457
Pulled By: NickGerleman
fbshipit-source-id: 425e9ec14f17de5470677b73d68873647bf28675
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/api/ReactAndroid.api
+12-10Lines changed: 12 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -6319,33 +6319,35 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
6319
6319
protected fun verifyDrawable (Landroid/graphics/drawable/Drawable;)Z
6320
6320
}
6321
6321
6322
-
public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/react/uimanager/IViewManagerWithChildren, com/facebook/react/views/text/ReactTextViewManagerCallback {
6323
-
protected field mReactTextViewManagerCallback Lcom/facebook/react/views/text/ReactTextViewManagerCallback;
6322
+
public final class com/facebook/react/views/text/ReactTextViewManager : com/facebook/react/views/text/ReactTextAnchorViewManager, com/facebook/react/uimanager/IViewManagerWithChildren, com/facebook/react/views/text/ReactTextViewManagerCallback {
6323
+
public static final field Companion Lcom/facebook/react/views/text/ReactTextViewManager$Companion;
6324
+
public static final field REACT_CLASS Ljava/lang/String;
6324
6325
public fun <init> ()V
6325
6326
public fun <init> (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)V
6327
+
public synthetic fun <init> (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
6326
6328
public synthetic fun createShadowNodeInstance ()Lcom/facebook/react/uimanager/ReactShadowNode;
6327
6329
public fun createShadowNodeInstance ()Lcom/facebook/react/views/text/ReactTextShadowNode;
6328
-
public fun createShadowNodeInstance (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Lcom/facebook/react/views/text/ReactTextShadowNode;
6330
+
public final fun createShadowNodeInstance (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)Lcom/facebook/react/views/text/ReactTextShadowNode;
6329
6331
public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
6330
6332
public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/text/ReactTextView;
6331
6333
public fun getExportedCustomDirectEventTypeConstants ()Ljava/util/Map;
6332
6334
public fun getName ()Ljava/lang/String;
6333
6335
public fun getShadowNodeClass ()Ljava/lang/Class;
6334
6336
public fun needsCustomLayoutForChildren ()Z
6335
-
protected synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
6336
-
protected fun onAfterUpdateTransaction (Lcom/facebook/react/views/text/ReactTextView;)V
6337
+
public synthetic fun onAfterUpdateTransaction (Landroid/view/View;)V
6337
6338
public fun onPostProcessSpannable (Landroid/text/Spannable;)V
6338
-
protected synthetic fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
6339
-
protected fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Lcom/facebook/react/views/text/ReactTextView;)Lcom/facebook/react/views/text/ReactTextView;
6340
-
public fun setOverflow (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6339
+
public synthetic fun prepareToRecycleView (Lcom/facebook/react/uimanager/ThemedReactContext;Landroid/view/View;)Landroid/view/View;
6340
+
public final fun setOverflow (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6341
6341
public synthetic fun setPadding (Landroid/view/View;IIII)V
6342
6342
public fun setPadding (Lcom/facebook/react/views/text/ReactTextView;IIII)V
6343
6343
public synthetic fun updateExtraData (Landroid/view/View;Ljava/lang/Object;)V
6344
6344
public fun updateExtraData (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/Object;)V
6345
6345
public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
6346
6346
public fun updateState (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
6347
-
protected synthetic fun updateViewAccessibility (Landroid/view/View;)V
6348
-
protected fun updateViewAccessibility (Lcom/facebook/react/views/text/ReactTextView;)V
6347
+
public synthetic fun updateViewAccessibility (Landroid/view/View;)V
6348
+
}
6349
+
6350
+
public final class com/facebook/react/views/text/ReactTextViewManager$Companion {
6349
6351
}
6350
6352
6351
6353
public abstract interface class com/facebook/react/views/text/ReactTextViewManagerCallback {
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextAnchorViewManager.kt
0 commit comments