-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
WIP: Svelte 5 adapter #6981
Merged
Merged
WIP: Svelte 5 adapter #6981
Changes from all commits
Commits
Show all changes
69 commits
Select commit
Hold shift + click to select a range
7b5e650
fix
zhihengGet 603c97e
fix
zhihengGet ed9539c
fix
zhihengGet a7c62ca
allow enable to be function
zhihengGet 206a324
wip
zhihengGet af611bc
fx
zhihengGet 9cc0721
remove unstate
zhihengGet b983b34
Merge branch 'main' into zhihengGet/main
lachlancollins b46374c
Fix merge
lachlancollins f1797cf
Fix createQueries merge
lachlancollins cf389f1
Fix some CI errors
lachlancollins 4f91fd4
Fix svelte-melt example
lachlancollins f1e0e69
Merge branch 'main' into zhihengGet/main
lachlancollins 6548f1d
Fix merge
lachlancollins 96b349d
Replace svelte-query
lachlancollins 7e9e8bd
Merge branch 'main' into zhihengGet/main
lachlancollins 0c3299c
svelte
zhihengGet 4478ec0
svelte
zhihengGet 18a65c2
fix tests
zhihengGet 9147e65
fix tests
zhihengGet 3a6112c
fix ts
zhihengGet 4a3c1e0
remove
zhihengGet 5e9b3bf
remove
zhihengGet 8200ebf
fix
zhihengGet 87038d1
fix
zhihengGet 1f0c8c0
fix
zhihengGet ee417eb
fix
zhihengGet 50d2538
fix tests
zhihengGet 80d77b5
Merge branch 'main' into zhihengGet/main
lachlancollins 10ba3bc
Fix lockfile
lachlancollins 4800066
Merge branch 'main' of https://github.com/zhihengGet/query
zhihengGet 016f9f0
Sync svelte versions
lachlancollins bb08ee8
Merge branch 'main' into zhihengGet/main
lachlancollins f0ebbf8
Fix eslint, update basic/ssr examples
lachlancollins c0bc55c
Merge branch 'main' into zhihengGet/main
lachlancollins c8713d6
Fix sherif, prettier
lachlancollins 83eba3e
Add missing exports
lachlancollins 1274401
dedupe useMutationState
lachlancollins 12b0ed8
fix a test case
zhihengGet bc26e06
dude
zhihengGet 47c7200
fix tests
zhihengGet e9c5990
Update $props, examples
lachlancollins 3da88ba
Remove export let
lachlancollins cae27db
Simplify tracking test states
lachlancollins ee98bef
Merge 'main' into zhihengGet/main
lachlancollins c1b7778
Fix svelte-query-persist-client tests
lachlancollins f160633
Decrease difference from main
lachlancollins 4c8c080
untrack
zhihengGet 4cf0b24
Fix createQueries, remove console.log
lachlancollins 34894de
Merge branch 'main' into zhihengGet/main
lachlancollins 76c4292
hi
zhihengGet 9a969be
omit
zhihengGet 61ee18b
fix types
zhihengGet f01f9f4
Merge branch 'main' into zhihengGet/main
lachlancollins 754daf8
Merge branch 'main' of https://github.com/zhihengGet/query into zhihe…
lachlancollins c63941e
Fix merge
lachlancollins b5f8d9e
Fix eslint
lachlancollins 2f3aa1a
fix
zhihengGet 5b6a69d
fix
zhihengGet 195ee40
Merge branch 'main' into main
lachlancollins 63fd463
Merge branch 'main' into zhihengGet/main
lachlancollins b7e81a9
fix
zhihengGet 9771a13
Improvements
lachlancollins 39cbe53
Fix reactive props
lachlancollins bb0c910
Add back missing option
lachlancollins 56e9881
Merge branch 'svelte-5-adapter' into main
lachlancollins 4cce385
Merge branch 'main' into zhihengGet/main
lachlancollins a48fadf
Remove missing export
lachlancollins 07e64e7
Merge branch 'main' into zhihengGet/main
lachlancollins 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 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 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 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 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 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 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 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 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 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,8 +1,7 @@ | ||
<script lang="ts"> | ||
import Post from '$lib/Post.svelte' | ||
import type { PageData } from './$types' | ||
|
||
export let data: PageData | ||
const { data } = $props() | ||
</script> | ||
|
||
<Post postId={data.postId} /> |
This file contains 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 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 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 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 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 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 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 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 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this double
::
a typo?