()
| 167 | } |
| 168 | |
| 169 | onExitDOM() { |
| 170 | ResizeHandler.deregister(this, this._handleResizeBound); |
| 171 | |
| 172 | this.getDomRef()!.querySelectorAll(".ui5-bar-content-container").forEach(child => { |
| 173 | ResizeHandler.deregister(child as HTMLElement, this._handleResizeBound); |
| 174 | }, this); |
| 175 | } |
| 176 | |
| 177 | get effectiveRole() { |
| 178 | return this.accessibleRole.toLowerCase() === "toolbar" ? "toolbar" as AriaRole : undefined; |
no test coverage detected