Skip to content
Merged
10 changes: 5 additions & 5 deletions docs/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces

### `accessibilityElementsHidden` <div className="label ios">iOS</div>

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`

Expand Down Expand Up @@ -276,17 +276,17 @@ 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 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 |
| ------- | ------- |
| boolean | false |

### `aria-label`

Defines a string value that labels an interactive element.
Defines a string value that can be used to name an element.

| Type |
| ------ |
Expand Down
4 changes: 2 additions & 2 deletions docs/touchablewithoutfeedback.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
6 changes: 3 additions & 3 deletions docs/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i

### `accessibilityElementsHidden` <div className="label ios">iOS</div>

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.

Expand Down Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
8 changes: 4 additions & 4 deletions website/versioned_docs/version-0.80/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces

### `accessibilityElementsHidden` <div className="label ios">iOS</div>

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`

Expand Down Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
6 changes: 3 additions & 3 deletions website/versioned_docs/version-0.80/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i

### `accessibilityElementsHidden` <div className="label ios">iOS</div>

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.

Expand Down Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
8 changes: 4 additions & 4 deletions website/versioned_docs/version-0.81/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ For example, in a window that contains sibling views `A` and `B`, setting `acces

### `accessibilityElementsHidden` <div className="label ios">iOS</div>

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`

Expand Down Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down
6 changes: 3 additions & 3 deletions website/versioned_docs/version-0.81/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i

### `accessibilityElementsHidden` <div className="label ios">iOS</div>

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.

Expand Down Expand Up @@ -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 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 |
| ------- | ------- |
Expand Down