@factorialco/f0-react 1.374.2 → 1.375.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.
@@ -612,11 +612,6 @@ declare module "gridstack" {
612
612
  }
613
613
 
614
614
 
615
- declare namespace Calendar {
616
- var displayName: string;
617
- }
618
-
619
-
620
615
  declare module "@tiptap/core" {
621
616
  interface Commands<ReturnType> {
622
617
  aiBlock: {
@@ -648,10 +643,8 @@ declare module "@tiptap/core" {
648
643
 
649
644
  declare module "@tiptap/core" {
650
645
  interface Commands<ReturnType> {
651
- videoEmbed: {
652
- setVideoEmbed: (options: {
653
- src: string;
654
- }) => ReturnType;
646
+ transcript: {
647
+ insertTranscript: (data: TranscriptData) => ReturnType;
655
648
  };
656
649
  }
657
650
  }
@@ -659,8 +652,15 @@ declare module "@tiptap/core" {
659
652
 
660
653
  declare module "@tiptap/core" {
661
654
  interface Commands<ReturnType> {
662
- transcript: {
663
- insertTranscript: (data: TranscriptData) => ReturnType;
655
+ videoEmbed: {
656
+ setVideoEmbed: (options: {
657
+ src: string;
658
+ }) => ReturnType;
664
659
  };
665
660
  }
666
661
  }
662
+
663
+
664
+ declare namespace Calendar {
665
+ var displayName: string;
666
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.374.2",
3
+ "version": "1.375.0",
4
4
  "main": "dist/f0.js",
5
5
  "typings": "dist/f0.d.ts",
6
6
  "private": false,