Skip to content

Commit fe3ccb2

Browse files
authored
docs: allow typing in search box while dropdown is open (#19424)
1 parent 274f054 commit fe3ccb2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/src/assets/js/search.js

+9
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,15 @@ if (poweredByLink) {
216216
});
217217
}
218218

219+
if (resultsElement) {
220+
resultsElement.addEventListener('keydown', (e) => {
221+
if (e.key !== "ArrowUp" && e.key !== "ArrowDown" && e.key !== "Tab" && e.key !== 'Shift') {
222+
searchInput.focus();
223+
searchInput.setSelectionRange(searchInput.value.length, searchInput.value.length);
224+
}
225+
});
226+
}
227+
219228
document.addEventListener('keydown', function (e) {
220229
const searchResults = Array.from(document.querySelectorAll('.search-results__item'));
221230
const isArrowKey = e.key === "ArrowUp" || e.key === "ArrowDown";

0 commit comments

Comments
 (0)