From 28c4c2bc470339f44b1b24913d0b25a09e8f46c2 Mon Sep 17 00:00:00 2001 From: Sugan G Date: Tue, 19 Dec 2023 12:38:35 +0530 Subject: [PATCH 1/3] isselected doc --- .../src/terra-dev-site/doc/button/About.1.doc.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx index 68953bfbacf..d8740f53373 100644 --- a/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx +++ b/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx @@ -23,6 +23,11 @@ Submit a request if additional variants not provided are needed. The `action` variant is intended for specific solutions in which a non-inline floating button sits above the page content in a fixed position. +### Assistive Technology Support +#### WAI ARIA Roles and States +* [aria-pressed](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-pressed) + * With Safari and Chrome, VoiceOver screenreader is partially compatible with aria-pressed. When aria-pressed is set to true, VoiceOver announces the selection state; when aria-pressed is set to false, it fails to announce the de-selection state. + ## Getting Started - Install with [npmjs](https://www.npmjs.com): From 54ccc12f9108f63960b23a807084c9de2a247c41 Mon Sep 17 00:00:00 2001 From: Sugan G Date: Tue, 19 Dec 2023 13:22:03 +0530 Subject: [PATCH 2/3] changelog --- packages/terra-core-docs/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/terra-core-docs/CHANGELOG.md b/packages/terra-core-docs/CHANGELOG.md index e6b4eefe788..1f3c34ccf73 100644 --- a/packages/terra-core-docs/CHANGELOG.md +++ b/packages/terra-core-docs/CHANGELOG.md @@ -4,6 +4,7 @@ * Added * Added instruction note for invalid example in `terra-search-select` and `terra-combo-box`. + * Added accessibility note for selectable button in `terra-button` ## 1.53.0 - (December 11, 2023) From 5cac5a11f105f0280bd534aa5160a2211c4aac50 Mon Sep 17 00:00:00 2001 From: Sugan G Date: Tue, 19 Dec 2023 15:28:13 +0530 Subject: [PATCH 3/3] moved info --- .../src/terra-dev-site/doc/button/About.1.doc.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx b/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx index d8740f53373..df8548f6f9f 100644 --- a/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx +++ b/packages/terra-core-docs/src/terra-dev-site/doc/button/About.1.doc.mdx @@ -23,11 +23,6 @@ Submit a request if additional variants not provided are needed. The `action` variant is intended for specific solutions in which a non-inline floating button sits above the page content in a fixed position. -### Assistive Technology Support -#### WAI ARIA Roles and States -* [aria-pressed](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-pressed) - * With Safari and Chrome, VoiceOver screenreader is partially compatible with aria-pressed. When aria-pressed is set to true, VoiceOver announces the selection state; when aria-pressed is set to false, it fails to announce the de-selection state. - ## Getting Started - Install with [npmjs](https://www.npmjs.com): @@ -67,3 +62,8 @@ import Button from 'terra-button'; ## Button Props + +### Assistive Technology Support +#### WAI ARIA Roles and States +* [aria-pressed](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-pressed) + * With Safari and Chrome, VoiceOver screenreader is partially compatible with aria-pressed. When aria-pressed is set to true, VoiceOver announces the selection state; when aria-pressed is set to false, it fails to announce the de-selection state.