Feat/vue tool provider 498#629
Open
shogun444 wants to merge 3 commits into
Open
Conversation
vishxrad
requested changes
Jun 10, 2026
| clean: true, | ||
| deps: { | ||
| neverBundle: [/^[^./]/], | ||
| neverBundle: [/^(?![./]|[A-Za-z]:[/\\])/], |
Contributor
There was a problem hiding this comment.
this commit has leftovers from a previous pr. kindly rebase.
| clean: true, | ||
| deps: { | ||
| neverBundle: [/^[^./]/], | ||
| neverBundle: [/^(?![./]|[A-Za-z]:[/\\])/], |
Contributor
There was a problem hiding this comment.
this commit has leftovers from a previous pr. kindly rebase.
| clean: true, | ||
| deps: { | ||
| neverBundle: [/^[^./]/], | ||
| neverBundle: [/^(?![./]|[A-Za-z]:[/\\])/], |
Contributor
There was a problem hiding this comment.
this commit has leftovers from a previous pr. kindly rebase.
| clean: true, | ||
| deps: { | ||
| neverBundle: [/^[^./]/], | ||
| neverBundle: [/^(?![./]|[A-Za-z]:[/\\])/], |
Contributor
There was a problem hiding this comment.
this commit has leftovers from a previous pr. kindly rebase.
| clean: false, | ||
| deps: { | ||
| neverBundle: [/^[^./]/, /\.scss$/, /\.css$/], | ||
| neverBundle: [/^(?![./]|[A-Za-z]:[/\\])/, /\.scss$/, /\.css$/], |
Contributor
There was a problem hiding this comment.
this commit has leftovers from a previous pr. kindly rebase.
bb004df to
86dcb82
Compare
Contributor
Author
|
Cleaned up the scope of the PR. |
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
Closes #498.
This PR adds first-class tool provider support to
@openuidev/vue-lang, bringing Vue much closer to feature parity with the React runtime. Queries, mutations, loading states, ActionPlan execution, and runtime error propagation are now supported through the Vue runtime.Changes
A new
useOpenUIStatecomposable was added to manage Store, QueryManager, and parser orchestration. The runtime was migrated tocreateStreamingParser, query and mutation execution support was implemented, and React-equivalent ActionPlan handling was added. The renderer now supportstoolProvider,queryLoader, andonError, while QueryManager instances react correctly to tool provider changes. Additional integration tests were added to cover query execution, mutations, provider updates, loading states, and error handling.Also added Vue examples and documentation for tool-backed UI
Test Plan
Verified locally by running:
pnpm --filter @openuidev/vue-lang test pnpm --filter @openuidev/vue-lang buildAll Vue runtime tests pass successfully (36/36).
Checklist