teodor-new-chat-ui 4.3.480 → 4.3.481

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teodor-new-chat-ui",
3
- "version": "4.3.480",
3
+ "version": "4.3.481",
4
4
  "description": "React chat UI components with streaming support, tool calls, and modern design",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,18 +0,0 @@
1
- /**
2
- * Custom artifact renderer for research_task_info type
3
- * Displays research task status with links and metadata
4
- */
5
- export interface ResearchTaskInfo {
6
- type: "research_task_info";
7
- task_id: string;
8
- task_url?: string;
9
- query?: string;
10
- status?: string;
11
- createdAt?: string;
12
- results?: string;
13
- [key: string]: unknown;
14
- }
15
- export interface ResearchTaskArtifactProps {
16
- artifact: ResearchTaskInfo;
17
- }
18
- export declare function ResearchTaskArtifact({ artifact }: ResearchTaskArtifactProps): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- import type { ToolIssue } from "@/features/messaging/components/message/hooks/useToolPayload";
2
- interface IssuesPayloadRendererProps {
3
- issues: ToolIssue[];
4
- }
5
- export declare function IssuesPayloadRenderer({ issues }: IssuesPayloadRendererProps): import("react/jsx-runtime").JSX.Element | null;
6
- export {};