@factorialco/f0-react 1.414.0 → 1.415.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.
@@ -697,11 +697,6 @@ declare module "gridstack" {
697
697
  }
698
698
 
699
699
 
700
- declare namespace Calendar {
701
- var displayName: string;
702
- }
703
-
704
-
705
700
  declare module "@tiptap/core" {
706
701
  interface Commands<ReturnType> {
707
702
  aiBlock: {
@@ -733,10 +728,8 @@ declare module "@tiptap/core" {
733
728
 
734
729
  declare module "@tiptap/core" {
735
730
  interface Commands<ReturnType> {
736
- videoEmbed: {
737
- setVideoEmbed: (options: {
738
- src: string;
739
- }) => ReturnType;
731
+ transcript: {
732
+ insertTranscript: (data: TranscriptData) => ReturnType;
740
733
  };
741
734
  }
742
735
  }
@@ -744,8 +737,15 @@ declare module "@tiptap/core" {
744
737
 
745
738
  declare module "@tiptap/core" {
746
739
  interface Commands<ReturnType> {
747
- transcript: {
748
- insertTranscript: (data: TranscriptData) => ReturnType;
740
+ videoEmbed: {
741
+ setVideoEmbed: (options: {
742
+ src: string;
743
+ }) => ReturnType;
749
744
  };
750
745
  }
751
746
  }
747
+
748
+
749
+ declare namespace Calendar {
750
+ var displayName: string;
751
+ }