diff --git a/docs/next/native-components-ios.html b/docs/next/native-components-ios.html index 19835e3d412..e095ca0222b 100644 --- a/docs/next/native-components-ios.html +++ b/docs/next/native-components-ios.html @@ -173,7 +173,7 @@ RCT_CUSTOM_VIEW_PROPERTY(region, MKCoordinateRegion<

You could write any conversion function you want for your view - here is the implementation for MKCoordinateRegion via a category on RCTConvert. It uses an already existing category of ReactNative RCTConvert+CoreLocation:

// RNTMapManager.m
 
-#import "RCTConvert+Mapkit.h"
+#import "RCTConvert+Mapkit.m"
 
 // RCTConvert+Mapkit.h
 
@@ -297,7 +297,7 @@ MapView.propTypes #import <React/RCTViewManager.h>
 
 #import "RNTMapView.h"
-#import "RCTConvert+Mapkit.h"
+#import "RCTConvert+Mapkit.m"
 
 @interface RNTMapManager : RCTViewManager <MKMapViewDelegate>
 @end
diff --git a/docs/next/native-components-ios/index.html b/docs/next/native-components-ios/index.html
index 19835e3d412..e095ca0222b 100644
--- a/docs/next/native-components-ios/index.html
+++ b/docs/next/native-components-ios/index.html
@@ -173,7 +173,7 @@ RCT_CUSTOM_VIEW_PROPERTY(region, MKCoordinateRegion<
 

You could write any conversion function you want for your view - here is the implementation for MKCoordinateRegion via a category on RCTConvert. It uses an already existing category of ReactNative RCTConvert+CoreLocation:

// RNTMapManager.m
 
-#import "RCTConvert+Mapkit.h"
+#import "RCTConvert+Mapkit.m"
 
 // RCTConvert+Mapkit.h
 
@@ -297,7 +297,7 @@ MapView.propTypes #import <React/RCTViewManager.h>
 
 #import "RNTMapView.h"
-#import "RCTConvert+Mapkit.h"
+#import "RCTConvert+Mapkit.m"
 
 @interface RNTMapManager : RCTViewManager <MKMapViewDelegate>
 @end
diff --git a/docs/next/textinput.html b/docs/next/textinput.html
index 6211084f0ec..7a09d61e369 100644
--- a/docs/next/textinput.html
+++ b/docs/next/textinput.html
@@ -902,14 +902,6 @@ export default function UselessTextInputMultiline() {
 
 
 

Methods

-

.focus()

-
focus();
-
-

Makes the native input request focus.

-

.blur()

-
blur();
-
-

Makes the native input lose focus.

clear()

clear();
 
@@ -924,7 +916,7 @@ export default function UselessTextInputMultiline() {
  • react-native#19096: Doesn't support Android's onKeyPreIme.
  • react-native#19366: Calling .focus() after closing Android's keyboard via back button doesn't bring keyboard up again.
  • -