@factorialco/f0-react 4.4.1 → 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.
- package/dist/{F0CanvasPanel-QUIIThsf.js → F0CanvasPanel-BiW5s0PT.js} +528 -529
- package/dist/ai.d.ts +9 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +23 -6
- package/dist/experimental.js +963 -927
- package/dist/f0.d.ts +43 -6
- package/dist/f0.js +4985 -4920
- package/dist/i18n-provider-defaults.d.ts +9 -6
- package/dist/i18n-provider-defaults.js +4 -1
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-D212C-fT.js → useChatHistory-BgraXtVf.js} +1 -1
- package/dist/{useDataCollectionSource-Q4blWhWZ.js → useDataCollectionSource-DwS_R8Ua.js} +83 -83
- package/package.json +1 -1
|
@@ -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
|
-
|
|
898
|
-
|
|
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
|
-
|
|
907
|
-
|
|
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",
|