@factorialco/f0-react 2.22.0 → 2.24.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-v9tjaOnW.js → F0CanvasPanel-DAJcyyFM.js} +39974 -51837
- package/dist/F0CanvasPanel.css +1 -1
- package/dist/ai.d.ts +192 -127
- package/dist/ai.js +42 -42
- package/dist/experimental.d.ts +91 -23
- package/dist/experimental.js +68 -68
- package/dist/f0.d.ts +218 -141
- package/dist/f0.js +6626 -6607
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/styles.css +1 -1
- package/dist/useChatHistory-DsrI2Vz9.js +17998 -0
- package/dist/useChatHistory.css +1 -0
- package/dist/{useDataCollectionSource-BzwXcIpi.js → useDataCollectionSource-B5-atCQw.js} +14550 -12926
- package/package.json +1 -6
- package/dist/F0AiTableCard-BzXULBvr.js +0 -9343
|
@@ -869,10 +869,8 @@ declare module "@tiptap/core" {
|
|
|
869
869
|
|
|
870
870
|
declare module "@tiptap/core" {
|
|
871
871
|
interface Commands<ReturnType> {
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
src: string;
|
|
875
|
-
}) => ReturnType;
|
|
872
|
+
transcript: {
|
|
873
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
876
874
|
};
|
|
877
875
|
}
|
|
878
876
|
}
|
|
@@ -880,8 +878,10 @@ declare module "@tiptap/core" {
|
|
|
880
878
|
|
|
881
879
|
declare module "@tiptap/core" {
|
|
882
880
|
interface Commands<ReturnType> {
|
|
883
|
-
|
|
884
|
-
|
|
881
|
+
videoEmbed: {
|
|
882
|
+
setVideoEmbed: (options: {
|
|
883
|
+
src: string;
|
|
884
|
+
}) => ReturnType;
|
|
885
885
|
};
|
|
886
886
|
}
|
|
887
887
|
}
|