Fix aria-describedby in tooltip targets

pull/261/head
Cory LaViska 2020-10-22 23:26:23 -04:00
rodzic c9d0905b44
commit 6b5c5aad5f
2 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -13,6 +13,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Fixed a bug where `disabled` could be set when buttons are rendered as links
- Fixed a bug where hoisted dropdowns would render in the wrong position when place inside an `sl-dialog`
- Fixed a bug where boolean aria attributes didn't explicitly set `true|false` string values in the DOM
- Fixed a bug where `aria-describedby` was never set on tooltip targets in `sl-tooltip`
- Improved `sl-icon-button` accessibility by encouraging proper use of `label` and hiding the internal icon from screen readers
- Improved `sl-dropdown` accessibility by attaching `aria-haspopup` and `aria-expanded` to the slotted trigger
- Removed `console.log` from modal utility

Wyświetl plik

@ -202,8 +202,10 @@ export class Tooltip {
const oldTarget = this.target;
const newTarget = this.getTarget();
if (oldTarget && newTarget !== oldTarget) {
oldTarget.removeAttribute('aria-describedby');
if (newTarget !== oldTarget) {
if (oldTarget) {
oldTarget.removeAttribute('aria-describedby');
}
newTarget.setAttribute('aria-describedby', this.componentId);
}
}
@ -227,7 +229,7 @@ export class Tooltip {
render() {
return (
<Host onMouseOver={this.handleMouseOver} onMouseOut={this.handleMouseOut}>
<slot aria-describedby={this.componentId} onSlotchange={this.handleSlotChange} />
<slot onSlotchange={this.handleSlotChange} />
{!this.disabled && (
<div ref={el => (this.tooltipPositioner = el)} class="tooltip-positioner">