feat(devtools): add a command palette to search and jump across devtools - #8835
Open
Aejkatappaja wants to merge 4 commits into
Open
feat(devtools): add a command palette to search and jump across devtools#8835Aejkatappaja wants to merge 4 commits into
Aejkatappaja wants to merge 4 commits into
Conversation
🦋 Changeset detectedLatest commit: 8c32a5c The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@qwik.dev/core
@qwik.dev/router
eslint-plugin-qwik
create-qwik
@qwik.dev/optimizer
@qwik.dev/devtools
commit: |
Contributor
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
wmertens
reviewed
Jul 15, 2026
Contributor
|
@wmertens done |
JerryWu1234
reviewed
Jul 21, 2026
| ); | ||
| }); | ||
|
|
||
| export const IconMagnifyingGlass = component$((props: IconProps) => { |
Contributor
There was a problem hiding this comment.
how do you think we create a icon library in the future? because it wouldn't be good all icons in the project
Member
Author
There was a problem hiding this comment.
Yes totally agree !
an icon package make sense, i'll add a card in the project board
JerryWu1234
reviewed
Jul 21, 2026
| if (container) { | ||
| // Wait for the expansion animation to settle before scrolling to the final position. | ||
| const scrollDelay = (props.animate ?? true) ? (props.animationDuration ?? 200) + 50 : 0; | ||
| setTimeout(() => { |
Contributor
There was a problem hiding this comment.
@Varixo Is there any other idea about using settimeout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Implements the Global Command Palette / Quick Search feature for the DevTools overlay: a Cmd/Ctrl+K palette to search and jump anywhere without leaving the keyboard.
Demo
CleanShot.2026-07-15.at.1.41.16.mp4
Acceptance criteria
Notes / follow-ups (not in this PR)
Tree(controlled expansion + arevealNodesignal). HookTree's element-pick flow still uses its own DOM-basedexpandAndScrollToNode; routing it through the same reveal signal is a follow-up (it also carries a highlight flash and shares thehook-tree-leftcontainer with other handlers).Verification
tscon the devtools UI passes (0 errors), noascasts.command-palette.unit.tscovers sources, context exclusion, filtering, grouping, and recents (persist / cap / de-dupe / resolve-and-drop-stale).eslint-plugin-qwik) passes on the touched files.