@tedi-design-system/angular 6.2.0-rc.1 → 6.2.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5602,10 +5602,7 @@ class TooltipTriggerComponent {
5602
5602
  const element = this.interactiveElement();
5603
5603
  if (!element)
5604
5604
  return;
5605
- const descriptionId = this.tooltip.descriptionId;
5606
- const isOpen = this.tooltip.isOpen();
5607
- element.setAttribute("aria-describedby", descriptionId);
5608
- element.setAttribute("aria-expanded", String(isOpen));
5605
+ element.setAttribute("aria-describedby", this.tooltip.descriptionId);
5609
5606
  });
5610
5607
  }
5611
5608
  onClick() {