From 2ae43df2c3e882589c014c70bcca36e7fde24ca7 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Wed, 14 Mar 2018 17:26:01 +0000 Subject: [PATCH] Deploy website Deploy website version based on 5dcf51e403796baa660b5d84fc0ef024ac7f94bf --- docs/next/accessibility.html | 3 +++ docs/next/view.html | 15 ++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/next/accessibility.html b/docs/next/accessibility.html index 08bd01a88a8..8425010dfc6 100644 --- a/docs/next/accessibility.html +++ b/docs/next/accessibility.html @@ -56,6 +56,9 @@

accessibilityViewIsModal (iOS)

A Boolean value indicating whether VoiceOver should ignore the elements within views that are siblings of the receiver.

For example, in a window that contains sibling views A and B, setting accessibilityViewIsModal to true on view B causes VoiceOver to ignore the elements in the view A. On the other hand, if view B contains a child view C and you set accessibilityViewIsModal to true on view C, VoiceOver does not ignore the elements in view A.

+

accessibilityElementsHidden (iOS)

+

A Boolean value indicating whether the accessibility elements contained within this accessibility element are hidden.

+

For example, in a window that contains sibling views A and B, setting accessibilityElementsHidden to true on view B causes VoiceOver to ignore the elements in the view B. This is similar to the Android property importantForAccessibility="no-hide-descendants".

onAccessibilityTap (iOS)

Use this property to assign a custom function to be called when someone activates an accessible element by double tapping on it while it's selected.

onMagicTap (iOS)

diff --git a/docs/next/view.html b/docs/next/view.html index 10929aea428..b81acc61b3a 100644 --- a/docs/next/view.html +++ b/docs/next/view.html @@ -74,6 +74,7 @@
  • renderToHardwareTextureAndroid
  • accessibilityTraits
  • accessibilityViewIsModal
  • +
  • accessibilityElementsHidden
  • shouldRasterizeIOS

  • @@ -480,7 +481,19 @@

    accessibilityViewIsModal

    A value indicating whether VoiceOver should ignore the elements within views that are siblings of the receiver. Default is false.

    -

    See the Accessibility guide for more information.

    +

    See the Accessibility guide for more information.

    + + + + + + + +
    TypeRequiredPlatform
    boolNoiOS
    +
    +

    accessibilityElementsHidden

    +

    A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is false.

    +

    See the Accessibility guide for more information.

    TypeRequiredPlatform