knight-ui 1.1.2 → 1.1.3
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/component/ai/AIChatDialogue.d.ts +4 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -44,6 +44,10 @@ export declare class AIChatDialogue extends AbstractUI<AIChatDialogueProps, AICh
|
|
|
44
44
|
private scrollToBottom;
|
|
45
45
|
private getMsgKey;
|
|
46
46
|
private isEmptyNode;
|
|
47
|
+
/** 正文区是否正处于流式输出(有内容)—— 内容活跃时思考区不再显示等待指示,保证同一时刻只有一个指示 */
|
|
48
|
+
private isStreamingContent;
|
|
49
|
+
/** “思考中”流式指示:纯思考/工具执行阶段正文尚未流出时,以动效文字替代孤立光标 */
|
|
50
|
+
private renderThinkingIndicator;
|
|
47
51
|
/** 思考显示开关:showThinking !== false 时显示思考块 */
|
|
48
52
|
private thinkingEnabled;
|
|
49
53
|
/** 是否正处于"只吐思考、还没出正文"的流式阶段 */
|