@mastra/playground-ui 22.0.0-alpha.3 → 22.0.0
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 +66 -0
- package/dist/index.cjs.js +19 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +5 -0
- package/dist/index.es.js +20 -2
- package/dist/index.es.js.map +1 -1
- package/dist/src/domains/agents/components/agent-metadata/agent-metadata.d.ts +4 -0
- package/package.json +11 -11
|
@@ -41,6 +41,10 @@ export interface AgentMetadataWorkspaceToolsListProps {
|
|
|
41
41
|
tools: string[];
|
|
42
42
|
}
|
|
43
43
|
export declare const AgentMetadataWorkspaceToolsList: ({ tools }: AgentMetadataWorkspaceToolsListProps) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
export interface AgentMetadataBrowserToolsListProps {
|
|
45
|
+
tools: string[];
|
|
46
|
+
}
|
|
47
|
+
export declare const AgentMetadataBrowserToolsList: ({ tools }: AgentMetadataBrowserToolsListProps) => import("react/jsx-runtime").JSX.Element;
|
|
44
48
|
export interface AgentMetadataCombinedProcessorListProps {
|
|
45
49
|
inputProcessors: Array<{
|
|
46
50
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/playground-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "22.0.0
|
|
4
|
+
"version": "22.0.0",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -119,10 +119,10 @@
|
|
|
119
119
|
"react-dom": ">=19.0.0",
|
|
120
120
|
"tailwindcss": "^4.0.0",
|
|
121
121
|
"zod": "^3.25.0 || ^4.0.0",
|
|
122
|
-
"@mastra/
|
|
123
|
-
"@mastra/
|
|
124
|
-
"@mastra/
|
|
125
|
-
"@mastra/
|
|
122
|
+
"@mastra/client-js": "^1.13.0",
|
|
123
|
+
"@mastra/react": "0.2.22",
|
|
124
|
+
"@mastra/schema-compat": "1.2.7",
|
|
125
|
+
"@mastra/ai-sdk": "^1.3.1"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
128
|
"@storybook/addon-docs": "^9.1.20",
|
|
@@ -156,12 +156,12 @@
|
|
|
156
156
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
157
157
|
"vitest": "4.0.18",
|
|
158
158
|
"zod": "^4.3.6",
|
|
159
|
-
"@internal/lint": "0.0.
|
|
160
|
-
"@mastra/
|
|
161
|
-
"@mastra/
|
|
162
|
-
"@mastra/core": "1.22.0
|
|
163
|
-
"@mastra/
|
|
164
|
-
"@mastra/
|
|
159
|
+
"@internal/lint": "0.0.79",
|
|
160
|
+
"@mastra/ai-sdk": "^1.3.1",
|
|
161
|
+
"@mastra/client-js": "^1.13.0",
|
|
162
|
+
"@mastra/core": "1.22.0",
|
|
163
|
+
"@mastra/react": "0.2.22",
|
|
164
|
+
"@mastra/schema-compat": "1.2.7"
|
|
165
165
|
},
|
|
166
166
|
"homepage": "https://mastra.ai",
|
|
167
167
|
"repository": {
|