@factorialco/f0-react 1.390.0 → 1.390.2

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.
@@ -645,11 +645,6 @@ declare module "gridstack" {
645
645
  }
646
646
 
647
647
 
648
- declare namespace Calendar {
649
- var displayName: string;
650
- }
651
-
652
-
653
648
  declare module "@tiptap/core" {
654
649
  interface Commands<ReturnType> {
655
650
  aiBlock: {
@@ -681,8 +676,10 @@ declare module "@tiptap/core" {
681
676
 
682
677
  declare module "@tiptap/core" {
683
678
  interface Commands<ReturnType> {
684
- transcript: {
685
- insertTranscript: (data: TranscriptData) => ReturnType;
679
+ videoEmbed: {
680
+ setVideoEmbed: (options: {
681
+ src: string;
682
+ }) => ReturnType;
686
683
  };
687
684
  }
688
685
  }
@@ -690,10 +687,13 @@ declare module "@tiptap/core" {
690
687
 
691
688
  declare module "@tiptap/core" {
692
689
  interface Commands<ReturnType> {
693
- videoEmbed: {
694
- setVideoEmbed: (options: {
695
- src: string;
696
- }) => ReturnType;
690
+ transcript: {
691
+ insertTranscript: (data: TranscriptData) => ReturnType;
697
692
  };
698
693
  }
699
694
  }
695
+
696
+
697
+ declare namespace Calendar {
698
+ var displayName: string;
699
+ }