(deactivationEvent: string)
| 169 | } |
| 170 | |
| 171 | _setActive(deactivationEvent: string) { |
| 172 | this.toggleAttribute("_active", true); |
| 173 | document.addEventListener(deactivationEvent, () => { |
| 174 | this.removeAttribute("_active"); |
| 175 | }, { once: true }); |
| 176 | } |
| 177 | |
| 178 | _onOverflowButtonClick(e: UI5CustomEvent<Button, "click">) { |
| 179 | const ctor = this.actions[0].constructor as typeof TableRowActionBase; |
no outgoing calls
no test coverage detected