@factorialco/f0-react 3.12.0 → 4.0.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-DWqZRYSD.js → F0CanvasPanel-BRbh7bn2.js} +24105 -23371
- package/dist/ai.d.ts +42 -42
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +238 -11
- package/dist/experimental.js +75 -74
- package/dist/f0.d.ts +49 -56
- package/dist/f0.js +133 -134
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-BJpDjaBs.js → useChatHistory-cszINQb8.js} +2941 -3681
- package/dist/{useDataCollectionSource-DR8se7ko.js → useDataCollectionSource-C2cl9Qj-.js} +1 -1
- package/package.json +1 -1
|
@@ -871,6 +871,15 @@ declare module "@tiptap/core" {
|
|
|
871
871
|
}
|
|
872
872
|
|
|
873
873
|
|
|
874
|
+
declare module "@tiptap/core" {
|
|
875
|
+
interface Commands<ReturnType> {
|
|
876
|
+
moodTracker: {
|
|
877
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
878
|
+
};
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
|
|
874
883
|
declare module "@tiptap/core" {
|
|
875
884
|
interface Commands<ReturnType> {
|
|
876
885
|
enhanceHighlight: {
|
|
@@ -885,8 +894,8 @@ declare module "@tiptap/core" {
|
|
|
885
894
|
|
|
886
895
|
declare module "@tiptap/core" {
|
|
887
896
|
interface Commands<ReturnType> {
|
|
888
|
-
|
|
889
|
-
|
|
897
|
+
transcript: {
|
|
898
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
890
899
|
};
|
|
891
900
|
}
|
|
892
901
|
}
|
|
@@ -903,15 +912,6 @@ declare module "@tiptap/core" {
|
|
|
903
912
|
}
|
|
904
913
|
|
|
905
914
|
|
|
906
|
-
declare module "@tiptap/core" {
|
|
907
|
-
interface Commands<ReturnType> {
|
|
908
|
-
transcript: {
|
|
909
|
-
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
910
|
-
};
|
|
911
|
-
}
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
|
|
915
915
|
declare namespace F0GraphNodeWrapperInner {
|
|
916
916
|
var displayName: string;
|
|
917
917
|
}
|