@factorialco/f0-react 3.12.0 → 4.0.1
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-DWqZRYSD.js → F0CanvasPanel-BRbh7bn2.js} +24105 -23371
- package/dist/ai.d.ts +37 -37
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +233 -6
- package/dist/experimental.js +75 -74
- package/dist/f0.d.ts +44 -51
- package/dist/f0.js +133 -134
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-BJpDjaBs.js → useChatHistory-cszINQb8.js} +2941 -3681
- package/dist/{useDataCollectionSource-DR8se7ko.js → useDataCollectionSource-C2cl9Qj-.js} +1 -1
- package/package.json +1 -1
|
@@ -894,10 +894,8 @@ declare module "@tiptap/core" {
|
|
|
894
894
|
|
|
895
895
|
declare module "@tiptap/core" {
|
|
896
896
|
interface Commands<ReturnType> {
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
src: string;
|
|
900
|
-
}) => ReturnType;
|
|
897
|
+
transcript: {
|
|
898
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
901
899
|
};
|
|
902
900
|
}
|
|
903
901
|
}
|
|
@@ -905,8 +903,10 @@ declare module "@tiptap/core" {
|
|
|
905
903
|
|
|
906
904
|
declare module "@tiptap/core" {
|
|
907
905
|
interface Commands<ReturnType> {
|
|
908
|
-
|
|
909
|
-
|
|
906
|
+
videoEmbed: {
|
|
907
|
+
setVideoEmbed: (options: {
|
|
908
|
+
src: string;
|
|
909
|
+
}) => ReturnType;
|
|
910
910
|
};
|
|
911
911
|
}
|
|
912
912
|
}
|