From 8b0c3e6024557077b5bbda93c1500dbb3a5a58a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Jastrze=CC=A8bski?= Date: Tue, 2 Sep 2025 13:02:07 +0200 Subject: [PATCH 01/10] fix: accessibilityElementsHidden & aria-hidden descriptions --- docs/accessibility.md | 10 +++++----- docs/touchablewithoutfeedback.md | 4 ++-- docs/view.md | 6 +++--- website/versioned_docs/version-0.80/accessibility.md | 8 ++++---- .../version-0.80/touchablewithoutfeedback.md | 4 ++-- website/versioned_docs/version-0.80/view.md | 6 +++--- website/versioned_docs/version-0.81/accessibility.md | 8 ++++---- .../version-0.81/touchablewithoutfeedback.md | 4 ++-- website/versioned_docs/version-0.81/view.md | 6 +++--- 9 files changed, 28 insertions(+), 28 deletions(-) diff --git a/docs/accessibility.md b/docs/accessibility.md index e4262af6dae..75cfe57691e 100644 --- a/docs/accessibility.md +++ b/docs/accessibility.md @@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces ### `accessibilityElementsHidden`
iOS
-A boolean value indicating whether the accessibility elements contained within this accessibility element are hidden. +A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, 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 view `B`. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`. +For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the `B` view and any elements it contains. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`. ### `aria-valuemax` @@ -276,9 +276,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | @@ -286,7 +286,7 @@ For example, in a window that contains sibling views `A` and `B`, setting `aria- ### `aria-label` -Defines a string value that labels an interactive element. +Defines a string value that can be used to name an element. | Type | | ------ | diff --git a/docs/touchablewithoutfeedback.md b/docs/touchablewithoutfeedback.md index ac991fa2b6c..3078927a286 100644 --- a/docs/touchablewithoutfeedback.md +++ b/docs/touchablewithoutfeedback.md @@ -246,9 +246,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/docs/view.md b/docs/view.md index 9740ac55390..81bb989b77e 100644 --- a/docs/view.md +++ b/docs/view.md @@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i ### `accessibilityElementsHidden`
iOS
-A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is `false`. +A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden. Default is `false`. See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) for more information. @@ -254,9 +254,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/website/versioned_docs/version-0.80/accessibility.md b/website/versioned_docs/version-0.80/accessibility.md index 0b42f659a64..108b29b304a 100644 --- a/website/versioned_docs/version-0.80/accessibility.md +++ b/website/versioned_docs/version-0.80/accessibility.md @@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces ### `accessibilityElementsHidden`
iOS
-A boolean value indicating whether the accessibility elements contained within this accessibility element are hidden. +A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, 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 view `B`. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`. +For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the `B` view and any elements it contains. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`. ### `aria-valuemax` @@ -276,9 +276,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/website/versioned_docs/version-0.80/touchablewithoutfeedback.md b/website/versioned_docs/version-0.80/touchablewithoutfeedback.md index 40fdf10fc58..caa46ebe0fc 100644 --- a/website/versioned_docs/version-0.80/touchablewithoutfeedback.md +++ b/website/versioned_docs/version-0.80/touchablewithoutfeedback.md @@ -244,9 +244,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/website/versioned_docs/version-0.80/view.md b/website/versioned_docs/version-0.80/view.md index fd096fb30c5..2e4773688e5 100644 --- a/website/versioned_docs/version-0.80/view.md +++ b/website/versioned_docs/version-0.80/view.md @@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i ### `accessibilityElementsHidden`
iOS
-A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is `false`. +A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden. Default is `false`. See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) for more information. @@ -254,9 +254,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/website/versioned_docs/version-0.81/accessibility.md b/website/versioned_docs/version-0.81/accessibility.md index 0b42f659a64..108b29b304a 100644 --- a/website/versioned_docs/version-0.81/accessibility.md +++ b/website/versioned_docs/version-0.81/accessibility.md @@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces ### `accessibilityElementsHidden`
iOS
-A boolean value indicating whether the accessibility elements contained within this accessibility element are hidden. +A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, 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 view `B`. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`. +For example, in a window that contains sibling views `A` and `B`, setting `accessibilityElementsHidden` to `true` on view `B` causes VoiceOver to ignore the `B` view and any elements it contains. This is similar to the Android property `importantForAccessibility="no-hide-descendants"`. ### `aria-valuemax` @@ -276,9 +276,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/website/versioned_docs/version-0.81/touchablewithoutfeedback.md b/website/versioned_docs/version-0.81/touchablewithoutfeedback.md index 40fdf10fc58..caa46ebe0fc 100644 --- a/website/versioned_docs/version-0.81/touchablewithoutfeedback.md +++ b/website/versioned_docs/version-0.81/touchablewithoutfeedback.md @@ -244,9 +244,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | diff --git a/website/versioned_docs/version-0.81/view.md b/website/versioned_docs/version-0.81/view.md index fd096fb30c5..2e4773688e5 100644 --- a/website/versioned_docs/version-0.81/view.md +++ b/website/versioned_docs/version-0.81/view.md @@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i ### `accessibilityElementsHidden`
iOS
-A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is `false`. +A boolean value indicating whether the given accessibility element, and any accessibility elements it contains, are hidden. Default is `false`. See the [Accessibility guide](accessibility.md#accessibilityelementshidden-ios) for more information. @@ -254,9 +254,9 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether the accessibility elements contained within this accessibility element are hidden. +Indicates whether whether the element is hidden from assistive technologies. -For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the elements in the view `B`. +For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. | Type | Default | | ------- | ------- | From 17f8a5f05c0fa4a59381ae0bb8168a6fa9a7cce9 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:37:46 +0200 Subject: [PATCH 02/10] Update docs/accessibility.md Co-authored-by: Bartosz Kaszubowski --- docs/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/accessibility.md b/docs/accessibility.md index 75cfe57691e..141b40352b0 100644 --- a/docs/accessibility.md +++ b/docs/accessibility.md @@ -276,7 +276,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From 5b6b5d8d5db4ff342b5b4fbbd3686c839344baf5 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:37:58 +0200 Subject: [PATCH 03/10] Update docs/view.md Co-authored-by: Bartosz Kaszubowski --- docs/view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/view.md b/docs/view.md index 81bb989b77e..046a63392be 100644 --- a/docs/view.md +++ b/docs/view.md @@ -254,7 +254,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From d08d23bfc61a866009868db545e1f988cb5f88a1 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:38:04 +0200 Subject: [PATCH 04/10] Update website/versioned_docs/version-0.80/touchablewithoutfeedback.md Co-authored-by: Bartosz Kaszubowski --- website/versioned_docs/version-0.80/touchablewithoutfeedback.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.80/touchablewithoutfeedback.md b/website/versioned_docs/version-0.80/touchablewithoutfeedback.md index caa46ebe0fc..2764327ad1b 100644 --- a/website/versioned_docs/version-0.80/touchablewithoutfeedback.md +++ b/website/versioned_docs/version-0.80/touchablewithoutfeedback.md @@ -244,7 +244,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From 20067a6fe565d6335585af05031cfc2a6746ab05 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:38:16 +0200 Subject: [PATCH 05/10] Update website/versioned_docs/version-0.81/view.md Co-authored-by: Bartosz Kaszubowski --- website/versioned_docs/version-0.81/view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.81/view.md b/website/versioned_docs/version-0.81/view.md index 2e4773688e5..75a78380471 100644 --- a/website/versioned_docs/version-0.81/view.md +++ b/website/versioned_docs/version-0.81/view.md @@ -254,7 +254,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From 2ff087bb830ea2db1457b0653af4f6849e3aff4a Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:38:25 +0200 Subject: [PATCH 06/10] Update website/versioned_docs/version-0.81/touchablewithoutfeedback.md Co-authored-by: Bartosz Kaszubowski --- website/versioned_docs/version-0.81/touchablewithoutfeedback.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.81/touchablewithoutfeedback.md b/website/versioned_docs/version-0.81/touchablewithoutfeedback.md index caa46ebe0fc..2764327ad1b 100644 --- a/website/versioned_docs/version-0.81/touchablewithoutfeedback.md +++ b/website/versioned_docs/version-0.81/touchablewithoutfeedback.md @@ -244,7 +244,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From a873ceef25777bb75438bc0802831268b0615643 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:38:33 +0200 Subject: [PATCH 07/10] Update website/versioned_docs/version-0.81/accessibility.md Co-authored-by: Bartosz Kaszubowski --- website/versioned_docs/version-0.81/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.81/accessibility.md b/website/versioned_docs/version-0.81/accessibility.md index 108b29b304a..d6a4547ded2 100644 --- a/website/versioned_docs/version-0.81/accessibility.md +++ b/website/versioned_docs/version-0.81/accessibility.md @@ -276,7 +276,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From d536a07e18319004b804404349ad7fa01311d046 Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:38:40 +0200 Subject: [PATCH 08/10] Update website/versioned_docs/version-0.80/view.md Co-authored-by: Bartosz Kaszubowski --- website/versioned_docs/version-0.80/view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.80/view.md b/website/versioned_docs/version-0.80/view.md index 2e4773688e5..75a78380471 100644 --- a/website/versioned_docs/version-0.80/view.md +++ b/website/versioned_docs/version-0.80/view.md @@ -254,7 +254,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From 1fcab2191c5edaa85081e1fdf25f9e0bbf7aeedf Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:38:48 +0200 Subject: [PATCH 09/10] Update website/versioned_docs/version-0.80/accessibility.md Co-authored-by: Bartosz Kaszubowski --- website/versioned_docs/version-0.80/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.80/accessibility.md b/website/versioned_docs/version-0.80/accessibility.md index 108b29b304a..d6a4547ded2 100644 --- a/website/versioned_docs/version-0.80/accessibility.md +++ b/website/versioned_docs/version-0.80/accessibility.md @@ -276,7 +276,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children. From 8b050b47c94a669f2c9c2b749cf8031e4160cb4f Mon Sep 17 00:00:00 2001 From: Maciej Jastrzebski Date: Tue, 2 Sep 2025 15:39:43 +0200 Subject: [PATCH 10/10] Update docs/touchablewithoutfeedback.md Co-authored-by: Bartosz Kaszubowski --- docs/touchablewithoutfeedback.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/touchablewithoutfeedback.md b/docs/touchablewithoutfeedback.md index 3078927a286..c7e875156df 100644 --- a/docs/touchablewithoutfeedback.md +++ b/docs/touchablewithoutfeedback.md @@ -246,7 +246,7 @@ Indicates whether an expandable element is currently expanded or collapsed. ### `aria-hidden` -Indicates whether whether the element is hidden from assistive technologies. +Indicates whether the element is hidden from assistive technologies. For example, in a window that contains sibling views `A` and `B`, setting `aria-hidden` to `true` on view `B` causes VoiceOver to ignore the `B` element and its children.