@factorialco/f0-react 1.194.0 → 1.195.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/experimental.d.ts +13 -5
- package/dist/experimental.js +3396 -3323
- package/dist/f0.d.ts +5 -5
- package/dist/f0.js +2 -2
- package/dist/{hooks-CbFey1zm.js → hooks-B6Pv4TaE.js} +8612 -8654
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -250,6 +250,14 @@ declare type AiChatProviderReturnValue = {
|
|
|
250
250
|
shouldPlayEntranceAnimation: boolean;
|
|
251
251
|
setShouldPlayEntranceAnimation: React.Dispatch<React.SetStateAction<boolean>>;
|
|
252
252
|
tmp_setAgent: (agent?: string) => void;
|
|
253
|
+
/**
|
|
254
|
+
* Set the amount of minutes after which the chat will be cleared automatically
|
|
255
|
+
* Set `null` to disable auto-clearing
|
|
256
|
+
*
|
|
257
|
+
* @default 15
|
|
258
|
+
*/
|
|
259
|
+
setAutoClearMinutes: React.Dispatch<React.SetStateAction<number | null>>;
|
|
260
|
+
autoClearMinutes: number | null;
|
|
253
261
|
} & Pick<AiChatState, "greeting" | "agent">;
|
|
254
262
|
|
|
255
263
|
declare interface AiChatState {
|
|
@@ -4818,6 +4826,11 @@ declare module "@tiptap/core" {
|
|
|
4818
4826
|
}
|
|
4819
4827
|
|
|
4820
4828
|
|
|
4829
|
+
declare namespace Calendar {
|
|
4830
|
+
var displayName: string;
|
|
4831
|
+
}
|
|
4832
|
+
|
|
4833
|
+
|
|
4821
4834
|
declare module "@tiptap/core" {
|
|
4822
4835
|
interface Commands<ReturnType> {
|
|
4823
4836
|
moodTracker: {
|
|
@@ -4825,8 +4838,3 @@ declare module "@tiptap/core" {
|
|
|
4825
4838
|
};
|
|
4826
4839
|
}
|
|
4827
4840
|
}
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
declare namespace Calendar {
|
|
4831
|
-
var displayName: string;
|
|
4832
|
-
}
|