@factorialco/f0-react 4.1.0 → 4.2.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/{F0CanvasPanel-BldFCFfR.js → F0CanvasPanel-BIGiuzKy.js} +7 -7
- package/dist/ai.d.ts +7 -7
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +7 -7
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +155 -7
- package/dist/f0.js +13085 -12515
- package/dist/i18n-provider-defaults.d.ts +7 -7
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-CmV8QZ5c.js → useChatHistory-B7HN_-nJ.js} +1 -1
- package/dist/{useDataCollectionSource-CS0v7UFK.js → useDataCollectionSource-DD8fxq_z.js} +1 -1
- package/package.json +1 -1
|
@@ -873,8 +873,11 @@ declare module "@tiptap/core" {
|
|
|
873
873
|
|
|
874
874
|
declare module "@tiptap/core" {
|
|
875
875
|
interface Commands<ReturnType> {
|
|
876
|
-
|
|
877
|
-
|
|
876
|
+
enhanceHighlight: {
|
|
877
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
878
|
+
placeholder?: string;
|
|
879
|
+
}) => ReturnType;
|
|
880
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
878
881
|
};
|
|
879
882
|
}
|
|
880
883
|
}
|
|
@@ -882,11 +885,8 @@ declare module "@tiptap/core" {
|
|
|
882
885
|
|
|
883
886
|
declare module "@tiptap/core" {
|
|
884
887
|
interface Commands<ReturnType> {
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
placeholder?: string;
|
|
888
|
-
}) => ReturnType;
|
|
889
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
888
|
+
moodTracker: {
|
|
889
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
890
890
|
};
|
|
891
891
|
}
|
|
892
892
|
}
|