primevue-mirror/doc/toggleswitch/AccessibilityDoc.vue

53 lines
1.6 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText id="accessibility" label="Accessibility" v-bind="$attrs">
<h3>Screen Reader</h3>
<p>
2024-04-18 14:22:30 +00:00
ToggleSwitch component uses a hidden native checkbox element with <i>switch</i> role internally that is only visible to screen readers. Value to describe the component can either be provided via <i>label</i> tag combined with
2023-02-28 08:29:30 +00:00
<i>id</i> prop or using <i>aria-labelledby</i>, <i>aria-label</i> props.
</p>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideToggleCode hideStackBlitz v-bind="$attrs" />
2023-02-28 08:29:30 +00:00
<h3>Keyboard Support</h3>
<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 switch.</td>
</tr>
<tr>
<td><i>space</i></td>
<td>Toggles the checked state.</td>
</tr>
</tbody>
</table>
</div>
</DocSectionText>
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
<label for="switch1">Remember Me</label>
2024-04-18 14:22:30 +00:00
<ToggleSwitch inputId="switch1" />
2023-02-28 08:29:30 +00:00
<span id="switch2">Remember Me</span>
2024-04-18 14:22:30 +00:00
<ToggleSwitch aria-labelledby="switch2" />
2023-02-28 08:29:30 +00:00
2024-04-18 14:22:30 +00:00
<ToggleSwitch aria-label="Remember Me" />
2023-10-15 09:38:39 +00:00
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>