You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I upgrade my Ember app to use the latest commit on the master branch of ember-radio-button to remove all the deprecation warnings. It seems that the latest code on the master branch no longer sets the aria-checked attribute.
{{! component usage }}
<RadioButton @value='yes' @groupValue='yes' @name='response' />
{{! `master` branch rendered HTML }}
<inputname="response"type="radio"value="yes">
{{! version 2.0.1 rendered HTML }}
<inputaria-checked="true"name="response"type="radio"value="yes">
I've reproduced this issue with both an Ember 3.28 app as well as a 4.1 app.
The text was updated successfully, but these errors were encountered:
I'm wondering if when using the radio button without the yielded content, it should be setting the @checked argument of the component rather than the checked HTML attribute of the underlying input field.
I upgrade my Ember app to use the latest commit on the
master
branch ofember-radio-button
to remove all the deprecation warnings. It seems that the latest code on themaster
branch no longer sets thearia-checked
attribute.I've reproduced this issue with both an Ember 3.28 app as well as a 4.1 app.
The text was updated successfully, but these errors were encountered: