aicers / frontary

Reusable HTML components using Yew for AICE
Apache License 2.0
0 stars 0 forks source link

Use HTML spec compliant radio element #110

Open sophie-cluml opened 3 months ago

sophie-cluml commented 3 months ago

Background

https://github.com/aicers/frontary/pull/98#discussion_r1646909196

Tasks

기존에 있는 코드 중 radio 버튼에 관한 코드를 HTML 5 compliant 하게 변경합니다.

sophie-cluml commented 3 months ago

@div-seungha 제가 이슈를 대신 생성하였습니다. 이슈를 해결하는 데에 더 도움이 되는 내용이 있다면 추가해주시면 감사하겠습니다.

sehkone commented 3 months ago

<div>로 구현되어 있는 코드를 <input type="radio">로 바꿀 필요는 없으므로 위 Tasks를 아래와 같이 수정합니다.

Tasks

<input type="radio">를 사용하지 않고 <div>로 구현되어 있으나 radio button으로 기능하는 요소에 대해서는 role="radio"를 추가하여 HTML 5 표준에 부합되도록 한다.