@mastra/playground-ui 7.0.0-beta.13 → 7.0.0-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/dist/index.cjs.js +51 -52
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +51 -52
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/ui/searchbar.d.ts +2 -1
- package/dist/src/hooks/use-workflow-runs.d.ts +1 -1
- package/package.json +10 -10
|
@@ -2,8 +2,9 @@ export interface SearchbarProps {
|
|
|
2
2
|
onSearch: (search: string) => void;
|
|
3
3
|
label: string;
|
|
4
4
|
placeholder: string;
|
|
5
|
+
debounceMs?: number;
|
|
5
6
|
}
|
|
6
|
-
export declare const Searchbar: ({ onSearch, label, placeholder }: SearchbarProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const Searchbar: ({ onSearch, label, placeholder, debounceMs }: SearchbarProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export declare const SearchbarWrapper: ({ children }: {
|
|
8
9
|
children: React.ReactNode;
|
|
9
10
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -217,7 +217,7 @@ export declare const useWorkflowRuns: (workflowId: string, { enabled }?: {
|
|
|
217
217
|
fetchStatus: import('@tanstack/react-query').FetchStatus;
|
|
218
218
|
promise: Promise<import('@mastra/core/storage').WorkflowRun[]>;
|
|
219
219
|
};
|
|
220
|
-
export declare const useWorkflowRunExecutionResult: (workflowId: string, runId: string, refetchInterval?: number) => import('@tanstack/react-query').UseQueryResult<import('@mastra/core/workflows').WorkflowState
|
|
220
|
+
export declare const useWorkflowRunExecutionResult: (workflowId: string, runId: string, refetchInterval?: number) => import('@tanstack/react-query').UseQueryResult<Partial<import('@mastra/core/workflows').WorkflowState>, Error>;
|
|
221
221
|
export declare const useDeleteWorkflowRun: (workflowId: string) => import('@tanstack/react-query').UseMutationResult<{
|
|
222
222
|
message: string;
|
|
223
223
|
}, Error, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/playground-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.0.0-beta.
|
|
4
|
+
"version": "7.0.0-beta.14",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -112,10 +112,10 @@
|
|
|
112
112
|
"react": ">=19.0.0",
|
|
113
113
|
"react-dom": ">=19.0.0",
|
|
114
114
|
"tailwindcss": "^3.0.0",
|
|
115
|
-
"@mastra/
|
|
116
|
-
"@mastra/
|
|
117
|
-
"@mastra/
|
|
118
|
-
"@mastra/
|
|
115
|
+
"@mastra/ai-sdk": "^1.0.0-beta.10",
|
|
116
|
+
"@mastra/react": "0.1.0-beta.14",
|
|
117
|
+
"@mastra/client-js": "^1.0.0-beta.14",
|
|
118
|
+
"@mastra/schema-compat": "1.0.0-beta.3"
|
|
119
119
|
},
|
|
120
120
|
"devDependencies": {
|
|
121
121
|
"@storybook/addon-docs": "^9.1.16",
|
|
@@ -140,11 +140,11 @@
|
|
|
140
140
|
"vite-plugin-dts": "^4.5.4",
|
|
141
141
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
142
142
|
"vitest": "4.0.12",
|
|
143
|
-
"@mastra/ai-sdk": "^1.0.0-beta.
|
|
144
|
-
"@mastra/client-js": "^1.0.0-beta.
|
|
145
|
-
"@mastra/core": "1.0.0-beta.
|
|
146
|
-
"@mastra/
|
|
147
|
-
"@mastra/
|
|
143
|
+
"@mastra/ai-sdk": "^1.0.0-beta.10",
|
|
144
|
+
"@mastra/client-js": "^1.0.0-beta.14",
|
|
145
|
+
"@mastra/core": "1.0.0-beta.14",
|
|
146
|
+
"@mastra/schema-compat": "1.0.0-beta.3",
|
|
147
|
+
"@mastra/react": "0.1.0-beta.14"
|
|
148
148
|
},
|
|
149
149
|
"homepage": "https://mastra.ai",
|
|
150
150
|
"repository": {
|