@factorialco/f0-react 1.260.0 → 1.262.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.
@@ -4505,6 +4505,7 @@ export declare interface RichTextEditorProps {
4505
4505
  errorConfig?: errorConfig;
4506
4506
  height?: heightType;
4507
4507
  plainHtmlMode?: boolean;
4508
+ fullScreenMode?: boolean;
4508
4509
  }
4509
4510
 
4510
4511
  declare interface RichTextEditorSkeletonProps {
@@ -5674,8 +5675,8 @@ declare global {
5674
5675
 
5675
5676
  declare module "@tiptap/core" {
5676
5677
  interface Commands<ReturnType> {
5677
- liveCompanion: {
5678
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5678
+ aiBlock: {
5679
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
5679
5680
  };
5680
5681
  }
5681
5682
  }
@@ -5683,8 +5684,8 @@ declare module "@tiptap/core" {
5683
5684
 
5684
5685
  declare module "@tiptap/core" {
5685
5686
  interface Commands<ReturnType> {
5686
- aiBlock: {
5687
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
5687
+ liveCompanion: {
5688
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5688
5689
  };
5689
5690
  }
5690
5691
  }
@@ -5699,11 +5700,6 @@ declare module "@tiptap/core" {
5699
5700
  }
5700
5701
 
5701
5702
 
5702
- declare namespace Calendar {
5703
- var displayName: string;
5704
- }
5705
-
5706
-
5707
5703
  declare module "@tiptap/core" {
5708
5704
  interface Commands<ReturnType> {
5709
5705
  moodTracker: {
@@ -5711,3 +5707,8 @@ declare module "@tiptap/core" {
5711
5707
  };
5712
5708
  }
5713
5709
  }
5710
+
5711
+
5712
+ declare namespace Calendar {
5713
+ var displayName: string;
5714
+ }