@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.
@@ -873,8 +873,11 @@ declare module "@tiptap/core" {
873
873
 
874
874
  declare module "@tiptap/core" {
875
875
  interface Commands<ReturnType> {
876
- moodTracker: {
877
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
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
- enhanceHighlight: {
886
- setEnhanceHighlight: (from: number, to: number, options?: {
887
- placeholder?: string;
888
- }) => ReturnType;
889
- clearEnhanceHighlight: () => ReturnType;
888
+ moodTracker: {
889
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
890
890
  };
891
891
  }
892
892
  }