()
| 59 | "__redirectFocus": { value: true, writable: true }, |
| 60 | "__suppressFocusBack": { |
| 61 | get() { |
| 62 | return { |
| 63 | handleEvent: (e: KeyboardEvent) => { |
| 64 | if (isTabPrevious(e)) { |
| 65 | const beforeElem = this.shadowRoot.querySelector("[busy-indicator-before-span]"); |
| 66 | this.__redirectFocus = false; |
| 67 | beforeElem.focus(); |
| 68 | this.__redirectFocus = true; |
| 69 | } |
| 70 | }, |
| 71 | capture: true, |
| 72 | passive: false, |
| 73 | }; |
| 74 | }, |
| 75 | }, |
| 76 | "isOpenUI5Component": { get: () => { return true; } }, |
| 77 | }); |
no test coverage detected