-
Notifications
You must be signed in to change notification settings - Fork 7
chore: remove @qwik.dev/router dependency and fix bug when running start in ui folder #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 20 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
d699552
feat(ui): implement draggable devtools toggle button
JerryWu1234 0075f3a
add change
JerryWu1234 09ba2f0
fix bug
JerryWu1234 9520473
chore: update dependencies to Qwik v2.0.0-alpha.9 and Vite v6.2.6, en…
JerryWu1234 ee98786
chore: update vite-plugin-inspect to v11.0.0, adjust vite-hot-client …
JerryWu1234 c9e4290
Delete .changeset/flat-parrots-swim.md
JerryWu1234 2a2ae45
add change
JerryWu1234 793a15d
feat(inspect): add inspect feature to devtools
JerryWu1234 6ffb825
Merge branch 'QwikDev:main' into main-D
JerryWu1234 78c307c
Merge branch 'QwikDev:main' into main-D
JerryWu1234 900ade1
refactor(build): replace unbuild with tsdown for build configuration
JerryWu1234 f8e4778
style(ui): adjust layout and spacing in multiple components
JerryWu1234 500b5b7
Merge pull request #1 from QwikDev/main
JerryWu1234 8db4660
Merge branch 'main-D' of https://github.com/JerryWu1234/devtools into…
JerryWu1234 befca77
chore: remove space
gioboa 7298343
chore: remove console.log
gioboa d0d3393
refactor(ui): remove @qwik.dev/router dependency and update component…
JerryWu1234 456bc70
Merge branch 'main-D' of https://github.com/JerryWu1234/devtools into…
JerryWu1234 961bef7
refactor(plugin): remove unused middleware in qwikDevtools function
JerryWu1234 2adfbb7
Merge remote-tracking branch 'origin/main' into main-D
JerryWu1234 cb2d42c
chore: remove unused import
gioboa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,16 @@ | ||
| import { component$ } from "@qwik.dev/core"; | ||
| // import { State } from "../../types/state"; | ||
| import { useLocation } from "@qwik.dev/router"; | ||
| // import { useLocation } from "@qwik.dev/router"; | ||
| import {inspectorLink} from './constant' | ||
| // interface RoutesProps { | ||
| // state: State; | ||
| // } | ||
|
|
||
| //@ts-ignore | ||
| export const Inspect = component$(() => { | ||
| const location = useLocation(); | ||
| console.log(location); | ||
| return ( | ||
| <div class="overflow-hidden rounded-xl border border-white/10 flex-1"> | ||
| <iframe src={`${location.url.href}${inspectorLink}`} width={'100%'} height={'100%'}></iframe> | ||
| <iframe src={`${location.href}${inspectorLink}`} width={'100%'} height={'100%'}></iframe> | ||
| </div> | ||
| ); | ||
| }); | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.