From a8a8678fbf991d2b0e08655bb6eaafa4a2483f39 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Wed, 28 Aug 2019 01:02:39 +0000 Subject: [PATCH] Deploy website Deploy website version based on 95045fb161af9df305d55119e5dd7d9504c70961 --- docs/next/alertios.html | 13 ++++++++++--- docs/next/alertios/index.html | 13 ++++++++++--- docs/next/imageeditor.html | 13 ++++++++++--- docs/next/imageeditor/index.html | 13 ++++++++++--- docs/next/imagepickerios.html | 13 ++++++++++--- docs/next/imagepickerios/index.html | 13 ++++++++++--- docs/next/network.html | 2 +- docs/next/network/index.html | 2 +- docs/next/pushnotificationios.html | 13 +++++++++++-- docs/next/pushnotificationios/index.html | 13 +++++++++++-- docs/next/segmentedcontrolios.html | 13 ++++++++++--- docs/next/segmentedcontrolios/index.html | 13 ++++++++++--- docs/next/statusbarios.html | 12 +++++++++--- docs/next/statusbarios/index.html | 12 +++++++++--- docs/next/stylesheet.html | 2 +- docs/next/stylesheet/index.html | 2 +- 16 files changed, 124 insertions(+), 38 deletions(-) diff --git a/docs/next/alertios.html b/docs/next/alertios.html index fb26a8508cf..6822a13cd21 100644 --- a/docs/next/alertios.html +++ b/docs/next/alertios.html @@ -1,5 +1,9 @@ -AlertIOS · React NativeAlertIOS · React Native
Edit

AlertIOS

AlertIOS provides functionality to create an iOS alert dialog with a message or create a prompt for user input.

+
Edit

AlertIOS

+

Deprecated. AlertIOS has been moved to Alert

+
+

AlertIOS provides functionality to create an iOS alert dialog with a message or create a prompt for user input.

Creating an iOS alert:

AlertIOS.alert('Sync Complete', 'All your data are belong to us.');
 
diff --git a/docs/next/alertios/index.html b/docs/next/alertios/index.html index fb26a8508cf..6822a13cd21 100644 --- a/docs/next/alertios/index.html +++ b/docs/next/alertios/index.html @@ -1,5 +1,9 @@ -AlertIOS · React NativeAlertIOS · React Native
Edit

AlertIOS

AlertIOS provides functionality to create an iOS alert dialog with a message or create a prompt for user input.

+
Edit

AlertIOS

+

Deprecated. AlertIOS has been moved to Alert

+
+

AlertIOS provides functionality to create an iOS alert dialog with a message or create a prompt for user input.

Creating an iOS alert:

AlertIOS.alert('Sync Complete', 'All your data are belong to us.');
 
diff --git a/docs/next/imageeditor.html b/docs/next/imageeditor.html index d33572167af..b32efe277f6 100644 --- a/docs/next/imageeditor.html +++ b/docs/next/imageeditor.html @@ -1,5 +1,9 @@ -ImageEditor · React NativeImageEditor · React Native
Edit

ImageEditor

Methods

+
Edit

ImageEditor

+

Deprecated. Use @react-native-community/image-editor instead.

+
+

Methods

diff --git a/docs/next/imageeditor/index.html b/docs/next/imageeditor/index.html index d33572167af..b32efe277f6 100644 --- a/docs/next/imageeditor/index.html +++ b/docs/next/imageeditor/index.html @@ -1,5 +1,9 @@ -ImageEditor · React NativeImageEditor · React Native
Edit

ImageEditor

Methods

+
Edit

ImageEditor

+

Deprecated. Use @react-native-community/image-editor instead.

+
+

Methods

diff --git a/docs/next/imagepickerios.html b/docs/next/imagepickerios.html index f07beac1e83..4effba092f2 100644 --- a/docs/next/imagepickerios.html +++ b/docs/next/imagepickerios.html @@ -1,5 +1,9 @@ -ImagePickerIOS · React NativeImagePickerIOS · React Native
Edit

ImagePickerIOS

Methods

+
Edit

ImagePickerIOS

+

Deprecated. Use @react-native-community/image-picker-ios instead.

+
+

Methods

  • canRecordVideos
  • canUseCamera
  • diff --git a/docs/next/imagepickerios/index.html b/docs/next/imagepickerios/index.html index f07beac1e83..4effba092f2 100644 --- a/docs/next/imagepickerios/index.html +++ b/docs/next/imagepickerios/index.html @@ -1,5 +1,9 @@ -ImagePickerIOS · React NativeImagePickerIOS · React Native
Edit

ImagePickerIOS

Methods

+
Edit

ImagePickerIOS

+

Deprecated. Use @react-native-community/image-picker-ios instead.

+
+

Methods

  • canRecordVideos
  • canUseCamera
  • diff --git a/docs/next/network.html b/docs/next/network.html index 140eb2e7fce..c6010382f18 100644 --- a/docs/next/network.html +++ b/docs/next/network.html @@ -188,7 +188,7 @@

    By default, iOS will block any request that's not encrypted using SSL. If you need to fetch from a cleartext URL (one that begins with http) you will first need to add an App Transport Security exception. If you know ahead of time what domains you will need access to, it is more secure to add exceptions just for those domains; if the domains are not known until runtime you can disable ATS completely. Note however that from January 2017, Apple's App Store review will require reasonable justification for disabling ATS. See Apple's documentation for more information.

    Using Other Networking Libraries

    -

    The XMLHttpRequest API is built in to React Native. This means that you can use third party libraries such as frisbee or axios that depend on it, or you can use the XMLHttpRequest API directly if you prefer.

    +

    The XMLHttpRequest API is built into React Native. This means that you can use third party libraries such as frisbee or axios that depend on it, or you can use the XMLHttpRequest API directly if you prefer.

    var request = new XMLHttpRequest();
     request.onreadystatechange = (e) => {
       if (request.readyState !== 4) {
    diff --git a/docs/next/network/index.html b/docs/next/network/index.html
    index 140eb2e7fce..c6010382f18 100644
    --- a/docs/next/network/index.html
    +++ b/docs/next/network/index.html
    @@ -188,7 +188,7 @@
     

    By default, iOS will block any request that's not encrypted using SSL. If you need to fetch from a cleartext URL (one that begins with http) you will first need to add an App Transport Security exception. If you know ahead of time what domains you will need access to, it is more secure to add exceptions just for those domains; if the domains are not known until runtime you can disable ATS completely. Note however that from January 2017, Apple's App Store review will require reasonable justification for disabling ATS. See Apple's documentation for more information.

    Using Other Networking Libraries

    -

    The XMLHttpRequest API is built in to React Native. This means that you can use third party libraries such as frisbee or axios that depend on it, or you can use the XMLHttpRequest API directly if you prefer.

    +

    The XMLHttpRequest API is built into React Native. This means that you can use third party libraries such as frisbee or axios that depend on it, or you can use the XMLHttpRequest API directly if you prefer.

    var request = new XMLHttpRequest();
     request.onreadystatechange = (e) => {
       if (request.readyState !== 4) {
    diff --git a/docs/next/pushnotificationios.html b/docs/next/pushnotificationios.html
    index 4478feaf703..973a1deba81 100644
    --- a/docs/next/pushnotificationios.html
    +++ b/docs/next/pushnotificationios.html
    @@ -1,4 +1,10 @@
    -PushNotificationIOS · React Native
Edit

PushNotificationIOS

Edit

PushNotificationIOS

+

Deprecated. Use @react-native-community/push-notification-ios instead.

+
+
Edit

PushNotificationIOS

Edit

PushNotificationIOS

+

Deprecated. Use @react-native-community/push-notification-ios instead.

+
+
Edit

SegmentedControlIOS

Use SegmentedControlIOS to render a UISegmentedControl iOS.

+
Edit

SegmentedControlIOS

+

Deprecated. Use @react-native-community/react-native-segmented-control instead.

+
+

Use SegmentedControlIOS to render a UISegmentedControl iOS.

Programmatically changing selected index

The selected index can be changed on the fly by assigning the selectedIndex prop to a state variable, then changing that variable. Note that the state variable would need to be updated as the user selects a value and changes the index, as shown in the example below.

Example

diff --git a/docs/next/segmentedcontrolios/index.html b/docs/next/segmentedcontrolios/index.html index 53ba723c8fd..b507c2021a1 100644 --- a/docs/next/segmentedcontrolios/index.html +++ b/docs/next/segmentedcontrolios/index.html @@ -1,5 +1,9 @@ -SegmentedControlIOS · React NativeSegmentedControlIOS · React Native
Edit

SegmentedControlIOS

Use SegmentedControlIOS to render a UISegmentedControl iOS.

+
Edit

SegmentedControlIOS

+

Deprecated. Use @react-native-community/react-native-segmented-control instead.

+
+

Use SegmentedControlIOS to render a UISegmentedControl iOS.

Programmatically changing selected index

The selected index can be changed on the fly by assigning the selectedIndex prop to a state variable, then changing that variable. Note that the state variable would need to be updated as the user selects a value and changes the index, as shown in the example below.

Example

diff --git a/docs/next/statusbarios.html b/docs/next/statusbarios.html index eaa2c53a612..ade5c2457d8 100644 --- a/docs/next/statusbarios.html +++ b/docs/next/statusbarios.html @@ -1,5 +1,9 @@ -StatusBarIOS · React NativeStatusBarIOS · React Native
Edit

StatusBarIOS

Use StatusBar for mutating the status bar.

+
Edit

StatusBarIOS

+

Use StatusBar for mutating the status bar.

+

Reference

Edit

StatusBarIOS

Use StatusBar for mutating the status bar.

+
Edit

StatusBarIOS

+

Use StatusBar for mutating the status bar.

+

Reference