@mastra/playground-ui 6.9.1 → 6.9.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 +22 -0
- package/dist/index.cjs.js +53 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +53 -10
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/ui/elements/notification/notification.d.ts +3 -1
- package/dist/src/domains/observability/components/span-scoring.d.ts +2 -1
- package/package.json +6 -6
|
@@ -4,6 +4,8 @@ type Notification = {
|
|
|
4
4
|
isVisible?: boolean;
|
|
5
5
|
autoDismiss?: boolean;
|
|
6
6
|
dismissTime?: number;
|
|
7
|
+
dismissible?: boolean;
|
|
8
|
+
type?: 'info' | 'error';
|
|
7
9
|
};
|
|
8
|
-
export declare function Notification({ children, className, isVisible, autoDismiss, dismissTime }: Notification): import("react/jsx-runtime").JSX.Element | null;
|
|
10
|
+
export declare function Notification({ children, className, isVisible, autoDismiss, dismissTime, dismissible, type, }: Notification): import("react/jsx-runtime").JSX.Element | null;
|
|
9
11
|
export {};
|
|
@@ -2,5 +2,6 @@ export interface SpanScoringProps {
|
|
|
2
2
|
traceId?: string;
|
|
3
3
|
spanId?: string;
|
|
4
4
|
entityType?: string;
|
|
5
|
+
isTopLevelSpan?: boolean;
|
|
5
6
|
}
|
|
6
|
-
export declare const SpanScoring: ({ traceId, spanId, entityType }: SpanScoringProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const SpanScoring: ({ traceId, spanId, entityType, isTopLevelSpan }: SpanScoringProps) => 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": "6.9.
|
|
4
|
+
"version": "6.9.2",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
"react-dom": ">=19.0.0",
|
|
108
108
|
"tailwindcss": "^3.0.0",
|
|
109
109
|
"@tanstack/react-query": "^5.81.5",
|
|
110
|
-
"@mastra/client-js": "^0.16.
|
|
111
|
-
"@mastra/react": "0.0.
|
|
110
|
+
"@mastra/client-js": "^0.16.11",
|
|
111
|
+
"@mastra/react": "0.0.17"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
114
|
"@storybook/addon-docs": "^9.1.10",
|
|
@@ -131,9 +131,9 @@
|
|
|
131
131
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
132
132
|
"vitest": "^3.2.4",
|
|
133
133
|
"@tanstack/react-query": "^5.81.5",
|
|
134
|
-
"@mastra/
|
|
135
|
-
"@mastra/
|
|
136
|
-
"@mastra/
|
|
134
|
+
"@mastra/react": "0.0.17",
|
|
135
|
+
"@mastra/core": "0.24.2",
|
|
136
|
+
"@mastra/client-js": "^0.16.11"
|
|
137
137
|
},
|
|
138
138
|
"homepage": "https://mastra.ai",
|
|
139
139
|
"repository": {
|