@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.
@@ -886,9 +886,8 @@ declare module "@tiptap/core" {
886
886
 
887
887
  declare module "@tiptap/core" {
888
888
  interface Commands<ReturnType> {
889
- enhanceHighlight: {
890
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
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
- moodTracker: {
900
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
898
+ enhanceHighlight: {
899
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
900
+ clearEnhanceHighlight: () => ReturnType;
901
901
  };
902
902
  }
903
903
  }