@factorialco/f0-react 2.2.0 → 2.4.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.
@@ -831,6 +831,11 @@ declare module "gridstack" {
831
831
  }
832
832
 
833
833
 
834
+ declare namespace Calendar {
835
+ var displayName: string;
836
+ }
837
+
838
+
834
839
  declare module "@tiptap/core" {
835
840
  interface Commands<ReturnType> {
836
841
  aiBlock: {
@@ -853,8 +858,8 @@ declare module "@tiptap/core" {
853
858
 
854
859
  declare module "@tiptap/core" {
855
860
  interface Commands<ReturnType> {
856
- transcript: {
857
- insertTranscript: (data: TranscriptData) => ReturnType;
861
+ moodTracker: {
862
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
858
863
  };
859
864
  }
860
865
  }
@@ -862,10 +867,8 @@ declare module "@tiptap/core" {
862
867
 
863
868
  declare module "@tiptap/core" {
864
869
  interface Commands<ReturnType> {
865
- videoEmbed: {
866
- setVideoEmbed: (options: {
867
- src: string;
868
- }) => ReturnType;
870
+ transcript: {
871
+ insertTranscript: (data: TranscriptData) => ReturnType;
869
872
  };
870
873
  }
871
874
  }
@@ -873,13 +876,10 @@ declare module "@tiptap/core" {
873
876
 
874
877
  declare module "@tiptap/core" {
875
878
  interface Commands<ReturnType> {
876
- moodTracker: {
877
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
879
+ videoEmbed: {
880
+ setVideoEmbed: (options: {
881
+ src: string;
882
+ }) => ReturnType;
878
883
  };
879
884
  }
880
885
  }
881
-
882
-
883
- declare namespace Calendar {
884
- var displayName: string;
885
- }