Remove aria-disabled from disabled input docs and example (fixes #823) (#831)

This commit is contained in:
Nathan Barrett 2022-12-14 10:50:03 -08:00 коммит произвёл GitHub
Родитель 887ca0828f 35ed565772
Коммит 7b7cfc294d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -11,6 +11,7 @@
* **html:** Added accessible attributes to menu bar (#815).
* **css:** Add style rule for the hidden attribute in global reset (#783).
* **html:** Use unambiguous date format in sidebar.
* **docs:** Remove aria-disabled from disabled form inputs.
# 16.0.1

Просмотреть файл

@ -63,9 +63,8 @@ variants:
id: search
- name: Disabled
notes: |
Disabled controls should have both the `disabled` attribute and `aria-disabled="true"`
Disabled controls should have the `disabled` attribute.
### Links
- [MDN `disabled`](https://developer.mozilla.org/docs/Web/HTML/Attributes/disabled)
- [MDN `aria-disabled`](https://developer.mozilla.org/docs/Web/Accessibility/ARIA/Attributes/aria-disabled)

Просмотреть файл

@ -12,4 +12,4 @@
# disabled - boolean
#}
<label for="{{ id }}">{{ label|default('Label') }}</label>
<input type="{{ type|default('text') }}" id="{{ id }}" name="{% if name %}{{ name }}{% else %}{{ id }}{% endif %}"{% if class %} class="{{ class }}"{% endif %}{% if attrs %} {{ attrs|safe }}{% endif %}{% if placeholder %} placeholder="{{ placeholder }}"{% endif %}{% if required %} required aria-required="true"{% endif %}{% if disabled %} disabled aria-disabled="true"{% endif %}>
<input type="{{ type|default('text') }}" id="{{ id }}" name="{% if name %}{{ name }}{% else %}{{ id }}{% endif %}"{% if class %} class="{{ class }}"{% endif %}{% if attrs %} {{ attrs|safe }}{% endif %}{% if placeholder %} placeholder="{{ placeholder }}"{% endif %}{% if required %} required aria-required="true"{% endif %}{% if disabled %} disabled{% endif %}>