@factorialco/f0-react 2.59.0 → 2.61.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-44Gm4epD.js → F0CanvasPanel-mGgQF8IR.js} +24840 -24698
- package/dist/ai.d.ts +5 -5
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +93 -6
- package/dist/experimental.js +2443 -2373
- package/dist/f0.d.ts +34 -6
- package/dist/f0.js +7617 -7727
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-HVhWAfGi.js → useChatHistory-B3Rzija0.js} +1 -1
- package/dist/{readDataCollectionStorage-U2-EKmqB.js → useDataCollectionSource-BkGmBDID.js} +7368 -7267
- package/package.json +1 -1
- /package/dist/{readDataCollectionStorage.css → useDataCollectionSource.css} +0 -0
|
@@ -886,9 +886,8 @@ declare module "@tiptap/core" {
|
|
|
886
886
|
|
|
887
887
|
declare module "@tiptap/core" {
|
|
888
888
|
interface Commands<ReturnType> {
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
889
|
+
moodTracker: {
|
|
890
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
892
891
|
};
|
|
893
892
|
}
|
|
894
893
|
}
|
|
@@ -896,8 +895,9 @@ declare module "@tiptap/core" {
|
|
|
896
895
|
|
|
897
896
|
declare module "@tiptap/core" {
|
|
898
897
|
interface Commands<ReturnType> {
|
|
899
|
-
|
|
900
|
-
|
|
898
|
+
enhanceHighlight: {
|
|
899
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
900
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
901
901
|
};
|
|
902
902
|
}
|
|
903
903
|
}
|