mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Tabbar): add role, aria and tabindex for a11y (#9895)
This commit is contained in:
parent
a055907b0d
commit
8ee394e115
@ -89,8 +89,11 @@ export default defineComponent({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
role="tab"
|
||||||
class={bem({ active: active.value })}
|
class={bem({ active: active.value })}
|
||||||
style={{ color }}
|
style={{ color }}
|
||||||
|
tabindex={0}
|
||||||
|
aria-selected={active.value}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
>
|
>
|
||||||
<Badge
|
<Badge
|
||||||
|
@ -69,6 +69,7 @@ export default defineComponent({
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
ref={root}
|
ref={root}
|
||||||
|
role="tablist"
|
||||||
style={getZIndexStyle(zIndex)}
|
style={getZIndexStyle(zIndex)}
|
||||||
class={[
|
class={[
|
||||||
bem({ fixed }),
|
bem({ fixed }),
|
||||||
|
@ -2,8 +2,14 @@
|
|||||||
|
|
||||||
exports[`should render demo and match snapshot 1`] = `
|
exports[`should render demo and match snapshot 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
<div class="van-tabbar-item van-tabbar-item--active">
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
|
<div role="tab"
|
||||||
|
class="van-tabbar-item van-tabbar-item--active"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
||||||
</i>
|
</i>
|
||||||
@ -12,7 +18,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-search">
|
<i class="van-badge__wrapper van-icon van-icon-search">
|
||||||
</i>
|
</i>
|
||||||
@ -21,7 +31,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
||||||
</i>
|
</i>
|
||||||
@ -30,7 +44,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
||||||
</i>
|
</i>
|
||||||
@ -42,8 +60,14 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
<div class="van-tabbar-item van-tabbar-item--active">
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
|
<div role="tab"
|
||||||
|
class="van-tabbar-item van-tabbar-item--active"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
||||||
</i>
|
</i>
|
||||||
@ -52,7 +76,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-search">
|
<i class="van-badge__wrapper van-icon van-icon-search">
|
||||||
</i>
|
</i>
|
||||||
@ -61,7 +89,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
||||||
</i>
|
</i>
|
||||||
@ -70,7 +102,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
||||||
</i>
|
</i>
|
||||||
@ -82,8 +118,14 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
<div class="van-tabbar-item van-tabbar-item--active">
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
|
<div role="tab"
|
||||||
|
class="van-tabbar-item van-tabbar-item--active"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
||||||
</i>
|
</i>
|
||||||
@ -92,7 +134,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-search">
|
<i class="van-badge__wrapper van-icon van-icon-search">
|
||||||
</i>
|
</i>
|
||||||
@ -103,7 +149,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
||||||
</i>
|
</i>
|
||||||
@ -115,7 +165,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
||||||
</i>
|
</i>
|
||||||
@ -130,8 +184,14 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
<div class="van-tabbar-item van-tabbar-item--active">
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
|
<div role="tab"
|
||||||
|
class="van-tabbar-item van-tabbar-item--active"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<img src="https://img.yzcdn.cn/vant/user-active.png">
|
<img src="https://img.yzcdn.cn/vant/user-active.png">
|
||||||
<div class="van-badge van-badge--fixed">
|
<div class="van-badge van-badge--fixed">
|
||||||
@ -144,7 +204,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-search">
|
<i class="van-badge__wrapper van-icon van-icon-search">
|
||||||
</i>
|
</i>
|
||||||
@ -153,7 +217,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
||||||
</i>
|
</i>
|
||||||
@ -165,9 +233,14 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
<div class="van-tabbar-item van-tabbar-item--active"
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
|
<div role="tab"
|
||||||
|
class="van-tabbar-item van-tabbar-item--active"
|
||||||
style="color: rgb(238, 10, 36);"
|
style="color: rgb(238, 10, 36);"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="true"
|
||||||
>
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
||||||
@ -177,8 +250,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item"
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
style="color: rgb(0, 0, 0);"
|
style="color: rgb(0, 0, 0);"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
>
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-search">
|
<i class="van-badge__wrapper van-icon van-icon-search">
|
||||||
@ -188,8 +264,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item"
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
style="color: rgb(0, 0, 0);"
|
style="color: rgb(0, 0, 0);"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
>
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
||||||
@ -199,8 +278,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab
|
Tab
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item"
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
style="color: rgb(0, 0, 0);"
|
style="color: rgb(0, 0, 0);"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
>
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
||||||
@ -213,8 +295,14 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
<div class="van-tabbar-item van-tabbar-item--active">
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
|
<div role="tab"
|
||||||
|
class="van-tabbar-item van-tabbar-item--active"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
<i class="van-badge__wrapper van-icon van-icon-home-o">
|
||||||
</i>
|
</i>
|
||||||
@ -223,7 +311,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab 1
|
Tab 1
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-search">
|
<i class="van-badge__wrapper van-icon van-icon-search">
|
||||||
</i>
|
</i>
|
||||||
@ -232,7 +324,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab 2
|
Tab 2
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
<i class="van-badge__wrapper van-icon van-icon-friends-o">
|
||||||
</i>
|
</i>
|
||||||
@ -241,7 +337,11 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
Tab 3
|
Tab 3
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabbar-item">
|
<div role="tab"
|
||||||
|
class="van-tabbar-item"
|
||||||
|
tabindex="0"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
<div class="van-badge__wrapper van-tabbar-item__icon">
|
<div class="van-badge__wrapper van-tabbar-item__icon">
|
||||||
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
<i class="van-badge__wrapper van-icon van-icon-setting-o">
|
||||||
</i>
|
</i>
|
||||||
|
@ -4,7 +4,9 @@ exports[`should render placeholder element when using placeholder prop 1`] = `
|
|||||||
<div class="van-tabbar__placeholder"
|
<div class="van-tabbar__placeholder"
|
||||||
style="height: 50px;"
|
style="height: 50px;"
|
||||||
>
|
>
|
||||||
<div class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom">
|
<div role="tablist"
|
||||||
|
class="van-tabbar van-tabbar--fixed van-hairline--top-bottom van-safe-area-bottom"
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user