diff --git a/README.md b/README.md index 4545c42..25d4055 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ export default class MainScreenComponent extends Component { icon: Image.resolveAssetSource(exitIcon).uri, id: 'exit', location: 'right', - accessibilityLabel: 'Exit this app' + adaLabel: 'Exit this app' }] }; onNavButtonPress (buttonId) { diff --git a/docs/Component.html b/docs/Component.html index e3e39f1..49623ec 100644 --- a/docs/Component.html +++ b/docs/Component.html @@ -163,7 +163,7 @@
Properties
icon: Image.resolveAssetSource(exitIcon).uri, id: 'exit', location: 'right', - accessibilityLabel: 'Exit this app', + adaLabel: 'Exit this app', }, ], }; diff --git a/docs/global.html b/docs/global.html index 5aa39af..7aa4639 100644 --- a/docs/global.html +++ b/docs/global.html @@ -310,7 +310,7 @@
Properties
- accessibilityLabel + adaLabel string <nullable>
@@ -401,7 +401,7 @@
Properties
- accessibilityLabel + adaLabel string <nullable>
diff --git a/docs/index.html b/docs/index.html index 449789f..2817d45 100644 --- a/docs/index.html +++ b/docs/index.html @@ -133,7 +133,7 @@

Integration

icon: Image.resolveAssetSource(exitIcon).uri, id: 'exit', location: 'right', - accessibilityLabel: 'Exit this app' + adaLabel: 'Exit this app' }] }; onNavButtonPress (buttonId) { diff --git a/docs/navigation-component.js.html b/docs/navigation-component.js.html index 0795039..53e7d3a 100644 --- a/docs/navigation-component.js.html +++ b/docs/navigation-component.js.html @@ -133,7 +133,7 @@

navigation-component.js

* icon: Image.resolveAssetSource(exitIcon).uri, * id: 'exit', * location: 'right', - * accessibilityLabel: 'Exit this app', + * adaLabel: 'Exit this app', * }, * ], * }; @@ -167,7 +167,7 @@

navigation-component.js

* or the name of a built-in icon. * @property {?string} title - The title for the button; will be used in case of missing or invalid icon. * @property {!string} id - The ID of the button; will be used in header button events. Cannot contain '.'. - * @property {?string} accessibilityLabel - The text to read out with screen-reader technology. + * @property {?string} adaLabel - The text to read out with screen-reader technology. */ /** @@ -176,7 +176,7 @@

navigation-component.js

* or the name of a built-in icon. * @property {?string} title - The title for the button (iOS only). * @property {?string} id - The ID of the button; will be used in header button events. If set, the press event must be handled on the Javascript side, as native will no longer handle the back press. Cannot contain '.'. - * @property {?string} accessibilityLabel - The text to read out with screen-reader technology. + * @property {?string} adaLabel - The text to read out with screen-reader technology. */ /** diff --git a/src/components/navigation-component.js b/src/components/navigation-component.js index 0ffcfe4..f03bf72 100644 --- a/src/components/navigation-component.js +++ b/src/components/navigation-component.js @@ -25,7 +25,7 @@ import AppNavigator from './app-navigator'; * icon: Image.resolveAssetSource(exitIcon).uri, * id: 'exit', * location: 'right', - * accessibilityLabel: 'Exit this app', + * adaLabel: 'Exit this app', * }, * ], * }; @@ -59,7 +59,7 @@ import AppNavigator from './app-navigator'; * or the name of a built-in icon. * @property {?string} title - The title for the button; will be used in case of missing or invalid icon. * @property {!string} id - The ID of the button; will be used in header button events. Cannot contain '.'. - * @property {?string} accessibilityLabel - The text to read out with screen-reader technology. + * @property {?string} adaLabel - The text to read out with screen-reader technology. */ /** @@ -68,7 +68,7 @@ import AppNavigator from './app-navigator'; * or the name of a built-in icon. * @property {?string} title - The title for the button (iOS only). * @property {?string} id - The ID of the button; will be used in header button events. If set, the press event must be handled on the Javascript side, as native will no longer handle the back press. Cannot contain '.'. - * @property {?string} accessibilityLabel - The text to read out with screen-reader technology. + * @property {?string} adaLabel - The text to read out with screen-reader technology. */ /**