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:
Pull Request resolved: facebook#50879
The view for a view manager should not be nullable. Let's fix that.
These are also all bound specifically to `ReactTextView` instead of the generic constraint, so I just changed the constraint. Really this should just be totally merged with `ReactTextViewManager`.
Changelog: [Internal]
Reviewed By: cortinico, rshest
Differential Revision: D73453631
fbshipit-source-id: 74bcadeef0e83a719dfe2b989784501575b58168
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/api/ReactAndroid.api
+1-22Lines changed: 1 addition & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -6352,27 +6352,6 @@ public final class com/facebook/react/views/text/ReactFontManager$Companion {
6352
6352
public final fun getInstance ()Lcom/facebook/react/views/text/ReactFontManager;
6353
6353
}
6354
6354
6355
-
public abstract class com/facebook/react/views/text/ReactTextAnchorViewManager : com/facebook/react/uimanager/BaseViewManager {
6356
-
public fun <init> ()V
6357
-
public final fun setAccessible (Lcom/facebook/react/views/text/ReactTextView;Z)V
6358
-
public final fun setAdjustFontSizeToFit (Lcom/facebook/react/views/text/ReactTextView;Z)V
6359
-
public final fun setAndroidHyphenationFrequency (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6360
-
public final fun setBorderColor (Lcom/facebook/react/views/text/ReactTextView;ILjava/lang/Integer;)V
6361
-
public final fun setBorderRadius (Lcom/facebook/react/views/text/ReactTextView;IF)V
6362
-
public final fun setBorderStyle (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6363
-
public final fun setBorderWidth (Lcom/facebook/react/views/text/ReactTextView;IF)V
6364
-
public final fun setDataDetectorType (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6365
-
public final fun setDisabled (Lcom/facebook/react/views/text/ReactTextView;Z)V
6366
-
public final fun setEllipsizeMode (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6367
-
public final fun setFontSize (Lcom/facebook/react/views/text/ReactTextView;F)V
6368
-
public final fun setIncludeFontPadding (Lcom/facebook/react/views/text/ReactTextView;Z)V
6369
-
public final fun setLetterSpacing (Lcom/facebook/react/views/text/ReactTextView;F)V
6370
-
public final fun setNumberOfLines (Lcom/facebook/react/views/text/ReactTextView;I)V
6371
-
public final fun setSelectable (Lcom/facebook/react/views/text/ReactTextView;Z)V
6372
-
public final fun setSelectionColor (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/Integer;)V
6373
-
public final fun setTextAlignVertical (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/String;)V
6374
-
}
6375
-
6376
6355
public class com/facebook/react/views/text/ReactTextShadowNode : com/facebook/react/views/text/ReactBaseTextShadowNode {
6377
6356
public fun <init> ()V
6378
6357
public fun <init> (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)V
@@ -6448,7 +6427,7 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
6448
6427
protected fun verifyDrawable (Landroid/graphics/drawable/Drawable;)Z
6449
6428
}
6450
6429
6451
-
public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/react/views/text/ReactTextAnchorViewManager, com/facebook/react/uimanager/IViewManagerWithChildren {
6430
+
public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/react/uimanager/IViewManagerWithChildren {
6452
6431
protected field mReactTextViewManagerCallback Lcom/facebook/react/views/text/ReactTextViewManagerCallback;
6453
6432
public fun <init> ()V
6454
6433
public fun <init> (Lcom/facebook/react/views/text/ReactTextViewManagerCallback;)V
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextAnchorViewManager.kt
0 commit comments