sandbox-agent/sdks/react/src/index.ts
Nathan Flurry 0471214d65
Share chat UI components in @sandbox-agent/react (#228)
* Extract shared chat UI components

* chore(release): update version to 0.3.1

* Use shared chat UI in Foundry
2026-03-10 22:31:36 -07:00

28 lines
710 B
TypeScript

export { AgentConversation } from "./AgentConversation.tsx";
export { AgentTranscript } from "./AgentTranscript.tsx";
export { ChatComposer } from "./ChatComposer.tsx";
export { ProcessTerminal } from "./ProcessTerminal.tsx";
export type {
AgentConversationClassNames,
AgentConversationProps,
} from "./AgentConversation.tsx";
export type {
AgentTranscriptClassNames,
AgentTranscriptProps,
PermissionOption,
PermissionOptionRenderContext,
PermissionReply,
TranscriptEntry,
} from "./AgentTranscript.tsx";
export type {
ChatComposerClassNames,
ChatComposerProps,
} from "./ChatComposer.tsx";
export type {
ProcessTerminalClient,
ProcessTerminalProps,
} from "./ProcessTerminal.tsx";