From 6054f0c3fcc25a0b9bba1b2050c85b9eecbdc940 Mon Sep 17 00:00:00 2001 From: gucal Date: Thu, 23 Nov 2023 10:22:08 +0300 Subject: [PATCH] Tag accessibility doc update #5356 --- components/doc/tag/accessibilitydoc.js | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/components/doc/tag/accessibilitydoc.js b/components/doc/tag/accessibilitydoc.js index c62fbc235e..cb32e02129 100644 --- a/components/doc/tag/accessibilitydoc.js +++ b/components/doc/tag/accessibilitydoc.js @@ -3,17 +3,15 @@ import { DocSectionText } from '@/components/doc/common/docsectiontext'; export function AccessibilityDoc() { return ( - - -

Screen Reader

-

- Tag does not include any roles and attributes by default, any attribute is passed to the root element so aria roles and attributes can be added if required. If the tags are dynamic, - aria-live may be utilized as well. In case badges need to be tabbable, tabIndex can be added to implement custom key handlers. -

+ +

Screen Reader

+

+ Tag does not include any roles and attributes by default, any attribute is passed to the root element so aria roles and attributes can be added if required. If the tags are dynamic, + aria-live may be utilized as well. In case badges need to be tabbable, tabIndex can be added to implement custom key handlers. +

-

Keyboard Support

-

Component does not include any interactive elements.

-
-
+

Keyboard Support

+

Component does not include any interactive elements.

+ ); }