mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(CountDown): add timer role for a11y (#9906)
This commit is contained in:
parent
eb6e609a93
commit
5126be92d8
@ -58,7 +58,7 @@ export default defineComponent({
|
||||
});
|
||||
|
||||
return () => (
|
||||
<div class={bem()}>
|
||||
<div role="timer" class={bem()}>
|
||||
{slots.default ? slots.default(current.value) : timeText.value}
|
||||
</div>
|
||||
);
|
||||
|
@ -1,31 +1,41 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`should format S milliseconds correctly 1`] = `
|
||||
<div class="van-count-down">
|
||||
<div role="timer"
|
||||
class="van-count-down"
|
||||
>
|
||||
01-5
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`should format SS milliseconds correctly 1`] = `
|
||||
<div class="van-count-down">
|
||||
<div role="timer"
|
||||
class="van-count-down"
|
||||
>
|
||||
01-50
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`should format complete time correctly 1`] = `
|
||||
<div class="van-count-down">
|
||||
<div role="timer"
|
||||
class="van-count-down"
|
||||
>
|
||||
01-05-59-59-999
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`should format incomplete time correctly 1`] = `
|
||||
<div class="van-count-down">
|
||||
<div role="timer"
|
||||
class="van-count-down"
|
||||
>
|
||||
29-59-59-999
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`should not start counting when auto-start prop is false 1`] = `
|
||||
<div class="van-count-down">
|
||||
<div role="timer"
|
||||
class="van-count-down"
|
||||
>
|
||||
100
|
||||
</div>
|
||||
`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user