VKUI icon indicating copy to clipboard operation
VKUI copied to clipboard

[BREAKING CHANGE] Сделать компонент Progress на элементе progress

Open SevereCloud opened this issue 2 years ago • 0 comments

Сейчас компонент Progress состоит из div элементов, но давно существует уже готовый HTML элемент progress. С ним меняется подход к a11y

До

<div aria-busy="true" aria-describedby="progress-bar">
    <!-- content is for this region is loading -->
</div>
  
<label id="progress-bar-label">
  Процесс
</label>
<div
  class="Progress" 
  id="progress-bar"
  role="progressbar"
  aria-labelledby="progress-bar-label"
  aria-valuenow="70"
  aria-valuemin="0"
  aria-valuemax="100"
>...</div>

После

<div aria-busy="true" aria-describedby="progress-bar">
    <!-- content is for this region is loading -->
</div>
  
<label>
  Процесс
  <progress id="progress-bar" value="70" max="100"></progress>
</label>

SevereCloud avatar May 23 '22 19:05 SevereCloud