@mastra/playground-ui 7.0.0-beta.1 → 7.0.0-beta.2
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 +14 -0
- package/dist/index.cjs.js +27 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +27 -8
- package/dist/index.es.js.map +1 -1
- package/dist/src/domains/workflows/context/use-current-run.d.ts +2 -0
- package/dist/src/domains/workflows/workflow/workflow-step-action-bar.d.ts +2 -1
- package/package.json +7 -7
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export interface WorkflowStepActionBarProps {
|
|
2
2
|
input?: any;
|
|
3
3
|
output?: any;
|
|
4
|
+
suspendOutput?: any;
|
|
4
5
|
resumeData?: any;
|
|
5
6
|
error?: any;
|
|
6
7
|
stepName: string;
|
|
@@ -9,4 +10,4 @@ export interface WorkflowStepActionBarProps {
|
|
|
9
10
|
onShowNestedGraph?: () => void;
|
|
10
11
|
status?: 'running' | 'success' | 'failed' | 'suspended' | 'waiting';
|
|
11
12
|
}
|
|
12
|
-
export declare const WorkflowStepActionBar: ({ input, output, resumeData, error, mapConfig, stepName, stepId, onShowNestedGraph, status, }: WorkflowStepActionBarProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const WorkflowStepActionBar: ({ input, output, resumeData, suspendOutput, error, mapConfig, stepName, stepId, onShowNestedGraph, status, }: WorkflowStepActionBarProps) => import("react/jsx-runtime").JSX.Element;
|
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.2",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"use-debounce": "^10.0.6",
|
|
105
105
|
"zod": "^4.1.12",
|
|
106
106
|
"zustand": "^5.0.8",
|
|
107
|
-
"@mastra/ai-sdk": "^1.0.0-beta.
|
|
107
|
+
"@mastra/ai-sdk": "^1.0.0-beta.1"
|
|
108
108
|
},
|
|
109
109
|
"peerDependencies": {
|
|
110
110
|
"@mastra/core": ">=1.0.0-0 <2.0.0-0",
|
|
@@ -113,8 +113,8 @@
|
|
|
113
113
|
"react": ">=19.0.0",
|
|
114
114
|
"react-dom": ">=19.0.0",
|
|
115
115
|
"tailwindcss": "^3.0.0",
|
|
116
|
-
"@mastra/client-js": "^1.0.0-beta.
|
|
117
|
-
"@mastra/react": "0.1.0-beta.
|
|
116
|
+
"@mastra/client-js": "^1.0.0-beta.2",
|
|
117
|
+
"@mastra/react": "0.1.0-beta.2"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"@storybook/addon-docs": "^9.1.16",
|
|
@@ -137,9 +137,9 @@
|
|
|
137
137
|
"vite-plugin-dts": "^4.5.4",
|
|
138
138
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
139
139
|
"vitest": "^3.2.4",
|
|
140
|
-
"@mastra/core": "1.0.0-beta.
|
|
141
|
-
"@mastra/client-js": "^1.0.0-beta.
|
|
142
|
-
"@mastra/react": "0.1.0-beta.
|
|
140
|
+
"@mastra/core": "1.0.0-beta.2",
|
|
141
|
+
"@mastra/client-js": "^1.0.0-beta.2",
|
|
142
|
+
"@mastra/react": "0.1.0-beta.2"
|
|
143
143
|
},
|
|
144
144
|
"homepage": "https://mastra.ai",
|
|
145
145
|
"repository": {
|