@mastra/playground-ui 4.0.4-alpha.4 → 4.0.4-alpha.6
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/dist/domains/agents/agent/agent-traces.d.ts +3 -2
- package/dist/domains/traces/hooks/use-open-trace.d.ts +5 -0
- package/dist/domains/traces/traces-sidebar.d.ts +9 -0
- package/dist/domains/traces/traces-table.d.ts +10 -0
- package/dist/domains/workflows/workflow/workflow-traces.d.ts +3 -2
- package/dist/ds/icons/SpanIcon.d.ts +3 -0
- package/dist/index.cjs.js +533 -701
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +534 -702
- package/dist/index.es.js.map +1 -1
- package/package.json +3 -3
- package/dist/domains/traces/index.d.ts +0 -5
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ReactNode } from '../../../../node_modules/@types/react';
|
|
2
2
|
|
|
3
|
-
export
|
|
3
|
+
export interface AgentTracesProps {
|
|
4
4
|
agentName: string;
|
|
5
5
|
baseUrl: string;
|
|
6
6
|
sidebarChild: ReactNode;
|
|
7
|
-
}
|
|
7
|
+
}
|
|
8
|
+
export declare function AgentTraces({ agentName, baseUrl, sidebarChild }: AgentTracesProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ReactNode } from '../../../node_modules/@types/react';
|
|
2
|
+
|
|
3
|
+
export interface TracesSidebarProps {
|
|
4
|
+
className?: string;
|
|
5
|
+
onResize?: (width: number) => void;
|
|
6
|
+
width: number;
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
export declare const TracesSidebar: ({ className, onResize, width, children }: TracesSidebarProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RefinedTrace } from './types';
|
|
2
|
+
|
|
3
|
+
export interface TracesTableProps {
|
|
4
|
+
traces: RefinedTrace[];
|
|
5
|
+
isLoading: boolean;
|
|
6
|
+
error?: {
|
|
7
|
+
message: string;
|
|
8
|
+
} | null;
|
|
9
|
+
}
|
|
10
|
+
export declare const TracesTable: ({ traces, isLoading, error }: TracesTableProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ReactNode } from '../../../../node_modules/@types/react';
|
|
2
2
|
|
|
3
|
-
export
|
|
3
|
+
export interface WorkflowTracesProps {
|
|
4
4
|
workflowName: string;
|
|
5
5
|
baseUrl: string;
|
|
6
6
|
sidebarChild: ReactNode;
|
|
7
|
-
}
|
|
7
|
+
}
|
|
8
|
+
export declare function WorkflowTraces({ workflowName, baseUrl, sidebarChild }: WorkflowTracesProps): import("react/jsx-runtime").JSX.Element;
|