From 96d2b808fb389b850d19bab3410120ebf0a05ea6 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 11 Oct 2019 17:06:02 +0000 Subject: [PATCH] Deploy website Deploy website version based on 64cde0684f6e62c244bab0fb0cd9f63266e05fb7 --- docs/next/native-components-ios.html | 4 ++-- docs/next/native-components-ios/index.html | 4 ++-- docs/next/textinput.html | 10 +--------- docs/next/textinput/index.html | 10 +--------- en/help.html | 2 +- en/help/index.html | 2 +- help.html | 2 +- help/index.html | 2 +- 8 files changed, 10 insertions(+), 26 deletions(-) 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.
  • -