@blade-hq/agent-react 2610.0.0-beta.64 → 2610.0.0-beta.66
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 +5 -1
- package/dist/components/ChatSurface.d.ts +8 -1
- package/dist/components/MessageList.d.ts +19 -1
- package/dist/hooks/use-typewriter-reveal.d.ts +32 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +512 -346
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/public-api.md +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blade-hq/agent-react",
|
|
3
|
-
"version": "2610.0.0-beta.
|
|
3
|
+
"version": "2610.0.0-beta.66",
|
|
4
4
|
"description": "Blade Agent React 绑定:BladeProvider、useAgentSession、开箱即用的 ChatView 聊天界面。",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@blade-hq/agent-client": "2610.0.0-beta.
|
|
34
|
+
"@blade-hq/agent-client": "2610.0.0-beta.66"
|
|
35
35
|
},
|
|
36
36
|
"bundledDependencies": [],
|
|
37
37
|
"peerDependencies": {
|
package/public-api.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> 本文件由 `scripts/public-api-report.mjs` 生成,请勿手改。
|
|
4
4
|
> 公共面变更时重新生成本报告,并同步更新 README 对应章节——CI 会校验两者。
|
|
5
5
|
|
|
6
|
-
共
|
|
6
|
+
共 323 个公开声明。
|
|
7
7
|
|
|
8
8
|
## `acceptedPostChatFollowupCompletesLatestRun` (function)
|
|
9
9
|
|
|
@@ -2954,6 +2954,20 @@ retry: (item: PluginConnectorItem) => void
|
|
|
2954
2954
|
toggle: (item: PluginConnectorItem, next: boolean) => void
|
|
2955
2955
|
```
|
|
2956
2956
|
|
|
2957
|
+
## `useTypewriterReveal` (function)
|
|
2958
|
+
|
|
2959
|
+
```ts
|
|
2960
|
+
useTypewriterReveal: (targetText: string, isLive: boolean, resetKey: string | null) => UseTypewriterRevealResult
|
|
2961
|
+
```
|
|
2962
|
+
|
|
2963
|
+
## `UseTypewriterRevealResult` (interface)
|
|
2964
|
+
|
|
2965
|
+
```ts
|
|
2966
|
+
displayedText: string
|
|
2967
|
+
flushNow: () => void
|
|
2968
|
+
isRevealing: boolean
|
|
2969
|
+
```
|
|
2970
|
+
|
|
2957
2971
|
## `WhatIfQuote` (interface)
|
|
2958
2972
|
|
|
2959
2973
|
```ts
|