()
| 610 | } |
| 611 | |
| 612 | onAfterRendering() { |
| 613 | if (this.inner && this.value !== this.inner.value) { |
| 614 | this.value = this.inner.value; |
| 615 | } |
| 616 | |
| 617 | this.storeResponsivePopoverWidth(); |
| 618 | |
| 619 | if (!arraysAreEqual(this._valueStateLinks, this.linksInAriaValueStateHiddenText)) { |
| 620 | this._removeLinksEventListeners(); |
| 621 | this._addLinksEventListeners(); |
| 622 | this._valueStateLinks = this.linksInAriaValueStateHiddenText; |
| 623 | } |
| 624 | } |
| 625 | |
| 626 | onEnterDOM() { |
| 627 | this._enableComposition(); |
nothing calls this directly
no test coverage detected