@factorialco/f0-react 4.4.0 → 4.5.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.
@@ -143,6 +143,9 @@ export declare const defaultTranslations: {
143
143
  readonly options: "Recording options";
144
144
  readonly playbackSpeed: "Playback speed";
145
145
  readonly position: "{{current}} of {{total}}";
146
+ readonly viewDetail: "View detail";
147
+ readonly hideDetail: "Hide detail";
148
+ readonly details: "Recording details";
146
149
  };
147
150
  readonly actions: {
148
151
  readonly add: "Add";
@@ -894,8 +897,10 @@ declare module "@tiptap/core" {
894
897
 
895
898
  declare module "@tiptap/core" {
896
899
  interface Commands<ReturnType> {
897
- transcript: {
898
- insertTranscript: (data: TranscriptData) => ReturnType;
900
+ videoEmbed: {
901
+ setVideoEmbed: (options: {
902
+ src: string;
903
+ }) => ReturnType;
899
904
  };
900
905
  }
901
906
  }
@@ -903,10 +908,8 @@ declare module "@tiptap/core" {
903
908
 
904
909
  declare module "@tiptap/core" {
905
910
  interface Commands<ReturnType> {
906
- videoEmbed: {
907
- setVideoEmbed: (options: {
908
- src: string;
909
- }) => ReturnType;
911
+ transcript: {
912
+ insertTranscript: (data: TranscriptData) => ReturnType;
910
913
  };
911
914
  }
912
915
  }
@@ -142,7 +142,10 @@ const e = {
142
142
  seek: "Seek",
143
143
  options: "Recording options",
144
144
  playbackSpeed: "Playback speed",
145
- position: "{{current}} of {{total}}"
145
+ position: "{{current}} of {{total}}",
146
+ viewDetail: "View detail",
147
+ hideDetail: "Hide detail",
148
+ details: "Recording details"
146
149
  },
147
150
  actions: {
148
151
  add: "Add",