Skip to content

Commit

Permalink
Merge pull request #29 from deepueg/fix-ada-documentation
Browse files Browse the repository at this point in the history
change accessibility label
  • Loading branch information
deepueg authored May 5, 2020
2 parents 214e348 + 7492721 commit b3063e6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion docs/Component.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h5>Properties</h5>
icon: Image.resolveAssetSource(exitIcon).uri,
id: &#x27;exit&#x27;,
location: &#x27;right&#x27;,
accessibilityLabel: &#x27;Exit this app&#x27;,
adaLabel: &#x27;Exit this app&#x27;,
},
],
};
Expand Down
4 changes: 2 additions & 2 deletions docs/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ <h5>Properties</h5>
</td>
</tr>
<tr>
<td><code>accessibilityLabel</code></td>
<td><code>adaLabel</code></td>
<td><span class="param-type">string</span></td>
<td class="attributes">&lt;nullable&gt;<br/></td>
<td class="last">
Expand Down Expand Up @@ -401,7 +401,7 @@ <h5>Properties</h5>
</td>
</tr>
<tr>
<td><code>accessibilityLabel</code></td>
<td><code>adaLabel</code></td>
<td><span class="param-type">string</span></td>
<td class="attributes">&lt;nullable&gt;<br/></td>
<td class="last">
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ <h3>Integration</h3>
icon: Image.resolveAssetSource(exitIcon).uri,
id: 'exit',
location: 'right',
accessibilityLabel: 'Exit this app'
adaLabel: 'Exit this app'
}]
};
onNavButtonPress (buttonId) {
Expand Down
6 changes: 3 additions & 3 deletions docs/navigation-component.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ <h1><span class="name">navigation-component.js</span></h1>
* icon: Image.resolveAssetSource(exitIcon).uri,
* id: 'exit',
* location: 'right',
* accessibilityLabel: 'Exit this app',
* adaLabel: 'Exit this app',
* },
* ],
* };
Expand Down Expand Up @@ -167,7 +167,7 @@ <h1><span class="name">navigation-component.js</span></h1>
* 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.
*/

/**
Expand All @@ -176,7 +176,7 @@ <h1><span class="name">navigation-component.js</span></h1>
* 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.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/components/navigation-component.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
* },
* ],
* };
Expand Down Expand Up @@ -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.
*/

/**
Expand All @@ -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.
*/

/**
Expand Down

0 comments on commit b3063e6

Please sign in to comment.