@factorialco/f0-react 1.200.5 → 1.201.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/dist/experimental.d.ts +10 -10
- package/dist/experimental.js +2648 -2645
- package/dist/f0.d.ts +10 -10
- package/dist/f0.js +27 -27
- package/dist/{hooks-DWW98fDA.js → hooks-Bk1Sz-hw.js} +4123 -4105
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1659,7 +1659,7 @@ declare const defaultTranslations: {
|
|
|
1659
1659
|
readonly openChat: "Open Chat with One AI";
|
|
1660
1660
|
readonly closeChat: "Close Chat with One AI";
|
|
1661
1661
|
readonly scrollToBottom: "Scroll to bottom";
|
|
1662
|
-
readonly welcome: "
|
|
1662
|
+
readonly welcome: "Ask or create with One";
|
|
1663
1663
|
readonly initialMessage: "How can I help you today?";
|
|
1664
1664
|
};
|
|
1665
1665
|
};
|
|
@@ -4831,8 +4831,8 @@ declare global {
|
|
|
4831
4831
|
|
|
4832
4832
|
declare module "@tiptap/core" {
|
|
4833
4833
|
interface Commands<ReturnType> {
|
|
4834
|
-
|
|
4835
|
-
|
|
4834
|
+
liveCompanion: {
|
|
4835
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4836
4836
|
};
|
|
4837
4837
|
}
|
|
4838
4838
|
}
|
|
@@ -4840,8 +4840,8 @@ declare module "@tiptap/core" {
|
|
|
4840
4840
|
|
|
4841
4841
|
declare module "@tiptap/core" {
|
|
4842
4842
|
interface Commands<ReturnType> {
|
|
4843
|
-
|
|
4844
|
-
|
|
4843
|
+
aiBlock: {
|
|
4844
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4845
4845
|
};
|
|
4846
4846
|
}
|
|
4847
4847
|
}
|
|
@@ -4856,11 +4856,6 @@ declare module "@tiptap/core" {
|
|
|
4856
4856
|
}
|
|
4857
4857
|
|
|
4858
4858
|
|
|
4859
|
-
declare namespace Calendar {
|
|
4860
|
-
var displayName: string;
|
|
4861
|
-
}
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
4859
|
declare module "@tiptap/core" {
|
|
4865
4860
|
interface Commands<ReturnType> {
|
|
4866
4861
|
moodTracker: {
|
|
@@ -4868,3 +4863,8 @@ declare module "@tiptap/core" {
|
|
|
4868
4863
|
};
|
|
4869
4864
|
}
|
|
4870
4865
|
}
|
|
4866
|
+
|
|
4867
|
+
|
|
4868
|
+
declare namespace Calendar {
|
|
4869
|
+
var displayName: string;
|
|
4870
|
+
}
|