<template> <DocSectionText id="accessibility" label="Accessibility" v-bind="$attrs"> <h3>Screen Reader</h3> <p> Popover component uses <i>dialog</i> role and since any attribute is passed to the root element you may define attributes like <i>aria-label</i> or <i>aria-labelledby</i> to describe the popup contents. In addition <i>aria-modal</i> is added since focus is kept within the popup. </p> <p>Popover adds <i>aria-expanded</i> state attribute and <i>aria-controls</i> to the trigger so that the relation between the trigger and the popup is defined.</p> <h3>Popover Keyboard Support</h3> <p>When the popup gets opened, the first focusable element receives the focus and this can be customized by adding <i>autofocus</i> to an element within the popup.</p> <div class="doc-tablewrapper"> <table class="doc-table"> <thead> <tr> <th>Key</th> <th>Function</th> </tr> </thead> <tbody> <tr> <td> <i>tab</i> </td> <td>Moves focus to the next the focusable element within the popup.</td> </tr> <tr> <td><i>shift</i> + <i>tab</i></td> <td>Moves focus to the previous the focusable element within the popup.</td> </tr> <tr> <td> <i>escape</i> </td> <td>Closes the popup and moves focus to the trigger.</td> </tr> </tbody> </table> </div> </DocSectionText> </template>