@polyv/chat-ui 2.6.0-rc-20260205.2 → 2.7.0-rc-20260312.1
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/index.d.ts +8 -0
- package/index.es.js +15469 -14712
- package/index.umd.js +326 -150
- package/package.json +1 -1
- package/special.d.ts +8 -0
- package/special.es.js +11984 -11227
- package/special.umd.js +325 -149
package/index.d.ts
CHANGED
|
@@ -676,6 +676,14 @@ export declare interface InputConfig {
|
|
|
676
676
|
* 提问区发送图片开关
|
|
677
677
|
*/
|
|
678
678
|
sendAskImageEnabled?: boolean;
|
|
679
|
+
/**
|
|
680
|
+
* 输入框聚焦回调
|
|
681
|
+
*/
|
|
682
|
+
onInputFocus?: () => void;
|
|
683
|
+
/**
|
|
684
|
+
* 输入框失焦回调
|
|
685
|
+
*/
|
|
686
|
+
onInputBlur?: () => void;
|
|
679
687
|
}
|
|
680
688
|
|
|
681
689
|
export declare type InputContent = InputContentText | InputContentImage;
|