@mastra/playground-ui 20.0.2 → 21.0.0-alpha.1
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 +27 -0
- package/dist/index.cjs.js +128 -69
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +16 -20
- package/dist/index.es.js +128 -69
- package/dist/index.es.js.map +1 -1
- package/dist/src/domains/agents/hooks/use-agent-trace-scores.d.ts +1 -0
- package/dist/src/domains/configuration/__tests__/studio-config-form-api-prefix.test.d.ts +1 -0
- package/dist/src/ds/components/FormFieldBlocks/fields/search-field-block.stories.d.ts +1 -0
- package/package.json +9 -7
|
@@ -39,6 +39,7 @@ export declare function useAgentTraceScores({ agentId, scorerId, enabled }: UseA
|
|
|
39
39
|
scope?: Record<string, unknown> | null | undefined;
|
|
40
40
|
experimentId?: string | null | undefined;
|
|
41
41
|
spanId?: string | null | undefined;
|
|
42
|
+
scorerName?: string | null | undefined;
|
|
42
43
|
scorerVersion?: string | null | undefined;
|
|
43
44
|
scoreSource?: string | null | undefined;
|
|
44
45
|
source?: string | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/playground-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "21.0.0-alpha.1",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -119,9 +119,9 @@
|
|
|
119
119
|
"react-dom": ">=19.0.0",
|
|
120
120
|
"tailwindcss": "^4.0.0",
|
|
121
121
|
"zod": "^3.25.0 || ^4.0.0",
|
|
122
|
-
"@mastra/client-js": "^1.11.2",
|
|
123
122
|
"@mastra/ai-sdk": "^1.3.0",
|
|
124
|
-
"@mastra/
|
|
123
|
+
"@mastra/client-js": "^1.12.0-alpha.1",
|
|
124
|
+
"@mastra/react": "0.2.21-alpha.1",
|
|
125
125
|
"@mastra/schema-compat": "1.2.7"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
@@ -138,7 +138,9 @@
|
|
|
138
138
|
"@types/react-dom": "^19.2.3",
|
|
139
139
|
"@types/semver": "^7.7.1",
|
|
140
140
|
"@vitejs/plugin-react": "^5.2.0",
|
|
141
|
+
"@testing-library/react": "^16.3.2",
|
|
141
142
|
"@vitest/ui": "4.0.18",
|
|
143
|
+
"jsdom": "^26.1.0",
|
|
142
144
|
"class-variance-authority": "^0.7.1",
|
|
143
145
|
"clsx": "^2.1.1",
|
|
144
146
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
@@ -156,10 +158,10 @@
|
|
|
156
158
|
"zod": "^4.3.6",
|
|
157
159
|
"@internal/lint": "0.0.77",
|
|
158
160
|
"@mastra/ai-sdk": "^1.3.0",
|
|
159
|
-
"@mastra/client-js": "^1.
|
|
160
|
-
"@mastra/
|
|
161
|
-
"@mastra/
|
|
162
|
-
"@mastra/
|
|
161
|
+
"@mastra/client-js": "^1.12.0-alpha.1",
|
|
162
|
+
"@mastra/react": "0.2.21-alpha.1",
|
|
163
|
+
"@mastra/core": "1.21.0-alpha.1",
|
|
164
|
+
"@mastra/schema-compat": "1.2.7"
|
|
163
165
|
},
|
|
164
166
|
"homepage": "https://mastra.ai",
|
|
165
167
|
"repository": {
|