@blade-hq/agent-kit 0.4.5 → 0.4.7
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/README.md +39 -1
- package/dist/{SkillStatusBar-DItrW2vv.d.ts → SkillStatusBar-DQyipdzn.d.ts} +112 -8
- package/dist/chunk-2UP7MG3J.js +66 -0
- package/dist/chunk-2UP7MG3J.js.map +1 -0
- package/dist/chunk-4VWLTG5L.js +2984 -0
- package/dist/chunk-4VWLTG5L.js.map +1 -0
- package/dist/chunk-7LEKQI47.js +32 -0
- package/dist/chunk-7LEKQI47.js.map +1 -0
- package/dist/chunk-CGOQI7ZL.js +8124 -0
- package/dist/chunk-CGOQI7ZL.js.map +1 -0
- package/dist/chunk-DQCXSPHP.js +33 -0
- package/dist/chunk-DQCXSPHP.js.map +1 -0
- package/dist/chunk-I3FFV63W.js +30 -0
- package/dist/chunk-I3FFV63W.js.map +1 -0
- package/dist/chunk-J3XVFPOV.js +58 -0
- package/dist/chunk-J3XVFPOV.js.map +1 -0
- package/dist/chunk-JCJFFJ42.js +39 -0
- package/dist/chunk-JCJFFJ42.js.map +1 -0
- package/dist/chunk-OKQWPNE3.js +1077 -0
- package/dist/chunk-OKQWPNE3.js.map +1 -0
- package/dist/chunk-PZ5AY32C.js +10 -0
- package/dist/chunk-PZ5AY32C.js.map +1 -0
- package/dist/chunk-TC5BBLWO.js +29 -0
- package/dist/chunk-TC5BBLWO.js.map +1 -0
- package/dist/chunk-VD4CKRMT.js +127 -0
- package/dist/chunk-VD4CKRMT.js.map +1 -0
- package/dist/chunk-X6MEYCU7.js +1401 -0
- package/dist/chunk-X6MEYCU7.js.map +1 -0
- package/dist/client/index.js +24 -1052
- package/dist/client/index.js.map +1 -1
- package/dist/react/api/licenses.js +11 -1470
- package/dist/react/api/licenses.js.map +1 -1
- package/dist/react/api/vibe-coding.js +25 -1481
- package/dist/react/api/vibe-coding.js.map +1 -1
- package/dist/react/cards/register.js +45 -138
- package/dist/react/cards/register.js.map +1 -1
- package/dist/react/components/chat/index.d.ts +7 -21
- package/dist/react/components/chat/index.js +28 -11366
- package/dist/react/components/chat/index.js.map +1 -1
- package/dist/react/components/plan/index.js +135 -3054
- package/dist/react/components/plan/index.js.map +1 -1
- package/dist/react/components/session/index.js +21 -1499
- package/dist/react/components/session/index.js.map +1 -1
- package/dist/react/components/workspace/index.js +116 -1715
- package/dist/react/components/workspace/index.js.map +1 -1
- package/dist/react/devtools/bridge-devtools/index.js +8 -51
- package/dist/react/devtools/bridge-devtools/index.js.map +1 -1
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +625 -14035
- package/dist/react/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as ParsedWhatIfPrompt } from '../../../SkillStatusBar-
|
|
2
|
-
export {
|
|
1
|
+
import { C as ChatViewCustomization, P as ParsedWhatIfPrompt } from '../../../SkillStatusBar-DQyipdzn.js';
|
|
2
|
+
export { A as AssistantTurnComponentProps, a as ChatInput, b as ChatView, c as ChatViewClassNames, d as ChatViewComponents, e as ChatViewProps, f as ChatViewRenderers, E as ErrorMessageBlock, F as FileComposerAttachment, g as FileSizeLimitDialog, M as MessageList, S as SkillStatusBar, h as SkillStatusBarComponentProps, T as ToolCallComponentProps, i as ToolRendererProps, U as UserMessageBubble, j as isErrorMessage, k as isUserMessage } from '../../../SkillStatusBar-DQyipdzn.js';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import { ReactNode } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -67,24 +67,9 @@ interface Props$2 {
|
|
|
67
67
|
sessionStatus?: string;
|
|
68
68
|
level?: 1 | 2;
|
|
69
69
|
forceExpanded?: boolean;
|
|
70
|
+
customization?: ChatViewCustomization;
|
|
70
71
|
}
|
|
71
|
-
declare function AssistantTurnBlock({ sessionId, messages: rawMessages, isStreaming, askAnswers, onAnswer, sessionStatus, level, forceExpanded, }: Props$2): react_jsx_runtime.JSX.Element;
|
|
72
|
-
|
|
73
|
-
type UserChatMessage = ChatMessage & {
|
|
74
|
-
role: "user";
|
|
75
|
-
};
|
|
76
|
-
type ErrorChatMessage = ChatMessage & {
|
|
77
|
-
role: "error";
|
|
78
|
-
};
|
|
79
|
-
declare function isUserMessage(message: ChatMessage): message is UserChatMessage;
|
|
80
|
-
declare function isErrorMessage(message: ChatMessage): message is ErrorChatMessage;
|
|
81
|
-
interface UserMessageProps {
|
|
82
|
-
message: UserChatMessage;
|
|
83
|
-
}
|
|
84
|
-
declare function UserMessageBubble({ message }: UserMessageProps): react_jsx_runtime.JSX.Element;
|
|
85
|
-
declare function ErrorMessageBlock({ message }: {
|
|
86
|
-
message: ErrorChatMessage;
|
|
87
|
-
}): react_jsx_runtime.JSX.Element;
|
|
72
|
+
declare function AssistantTurnBlock({ sessionId, messages: rawMessages, isStreaming, askAnswers, onAnswer, sessionStatus, level, forceExpanded, customization, }: Props$2): react_jsx_runtime.JSX.Element;
|
|
88
73
|
|
|
89
74
|
interface Props$1 {
|
|
90
75
|
toolCall: ToolCallInfo;
|
|
@@ -96,8 +81,9 @@ interface Props$1 {
|
|
|
96
81
|
level?: 1 | 2;
|
|
97
82
|
turnBlocks?: ContentBlock[];
|
|
98
83
|
reasoning?: string;
|
|
84
|
+
customization?: ChatViewCustomization;
|
|
99
85
|
}
|
|
100
|
-
declare function ToolCallBlock({ toolCall, onAnswer, answered, answerData, sessionId: providedSessionId, sessionStatus, level, turnBlocks, reasoning, }: Props$1): react_jsx_runtime.JSX.Element;
|
|
86
|
+
declare function ToolCallBlock({ toolCall, onAnswer, answered, answerData, sessionId: providedSessionId, sessionStatus, level, turnBlocks, reasoning, customization, }: Props$1): react_jsx_runtime.JSX.Element;
|
|
101
87
|
|
|
102
88
|
interface Props {
|
|
103
89
|
parsed: ParsedWhatIfPrompt;
|
|
@@ -125,4 +111,4 @@ declare function WhatIfQuoteProvider({ onJumpToStep, children, }: {
|
|
|
125
111
|
}): react_jsx_runtime.JSX.Element;
|
|
126
112
|
declare function useWhatIfQuoteContext(): WhatIfQuoteContextValue;
|
|
127
113
|
|
|
128
|
-
export { AssistantTurnBlock, AttachmentPreviewDialog,
|
|
114
|
+
export { AssistantTurnBlock, AttachmentPreviewDialog, ChatViewCustomization, CompactionCard, ImageLightbox, ToolCallBlock, WhatIfQuoteProvider, WhatIfUserBubble, useWhatIfQuoteContext };
|