randmarcomps 1.433.0 → 1.435.0
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/dist/randmarcomps.d.ts +2 -0
- package/dist/randmarcomps.js +2892 -2774
- package/dist/randmarcomps.umd.cjs +56 -56
- package/package.json +2 -2
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export declare const AIChatLayout: ForwardRefExoticComponent<AIChatLayoutProps &
|
|
|
65
65
|
|
|
66
66
|
export declare interface AIChatLayoutHandle {
|
|
67
67
|
sendMessageToAssistant: (message: string | null) => void;
|
|
68
|
+
sendMessageToAssistantWithClear: (message: string | null) => void;
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
export declare interface AIChatLayoutProps {
|
|
@@ -226,6 +227,7 @@ export declare const CardTitle: React_2.ForwardRefExoticComponent<React_2.HTMLAt
|
|
|
226
227
|
|
|
227
228
|
declare interface ChatContextType {
|
|
228
229
|
sendMessage: (message?: string) => boolean;
|
|
230
|
+
sendMessageWithClear: (message?: string) => boolean;
|
|
229
231
|
chatRef: default_2.RefObject<AIChatLayoutHandle | null>;
|
|
230
232
|
hasUnreads: boolean;
|
|
231
233
|
setHasUnreads: (value: boolean) => void;
|