()
| 241 | } |
| 242 | |
| 243 | setFocus() { |
| 244 | if ( |
| 245 | this._dialog.current && |
| 246 | typeof this._dialog.current.focus === 'function' |
| 247 | ) { |
| 248 | this._dialog.current.focus(); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | getFocusableChildren() { |
| 253 | return this._element.querySelectorAll(focusableElements.join(', ')); |
nothing calls this directly
no test coverage detected
searching dependent graphs…