@factorialco/f0-react 4.55.0 → 4.56.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/{ChatPdfThumbnail-e_xAa5BG.js → ChatPdfThumbnail-DBvkl-F_.js} +1 -1
- package/dist/{DocumentToolbar-ZnR9EUMa.js → DocumentToolbar-DQpt1krt.js} +2 -2
- package/dist/{DocxViewer-B3DGLu2C.js → DocxViewer-B6HTjpEm.js} +2 -2
- package/dist/{F0AiProcessingOverlay-BVHAspoQ.js → F0AiProcessingOverlay-D5hKB9d7.js} +637 -612
- package/dist/{F0CanvasPanel-DvAledR4.js → F0CanvasPanel-BeVQHrJo.js} +34109 -38710
- package/dist/{SheetViewer-DtfcXdoa.js → SheetViewer-DOm6rD9f.js} +2 -2
- package/dist/{TextViewer-Drfvy4UM.js → TextViewer-BW9eWjT_.js} +2 -2
- package/dist/ai.d.ts +25 -10
- package/dist/ai.js +2 -2
- package/dist/component-status.d.ts +16 -6
- package/dist/component-status.js +204 -129
- package/dist/experimental.d.ts +13 -7
- package/dist/experimental.js +340 -339
- package/dist/f0.d.ts +32 -11
- package/dist/f0.js +500 -499
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/{index-BgFg3D88.js → index-BF3g-R2k.js} +318 -316
- package/dist/{index-DYLglfsp.js → index-CfHeK3Qf.js} +34 -33
- package/dist/{pdfWorker-CqQpWr5o.js → pdfWorker-D-5ek9Um.js} +3 -2
- package/dist/styles.css +1 -1
- package/dist/tooltip-BH6Se8A4.js +4633 -0
- package/package.json +1 -1
|
@@ -1071,8 +1071,10 @@ declare module "@tiptap/core" {
|
|
|
1071
1071
|
|
|
1072
1072
|
declare module "@tiptap/core" {
|
|
1073
1073
|
interface Commands<ReturnType> {
|
|
1074
|
-
|
|
1075
|
-
|
|
1074
|
+
videoEmbed: {
|
|
1075
|
+
setVideoEmbed: (options: {
|
|
1076
|
+
src: string;
|
|
1077
|
+
}) => ReturnType;
|
|
1076
1078
|
};
|
|
1077
1079
|
}
|
|
1078
1080
|
}
|
|
@@ -1080,10 +1082,8 @@ declare module "@tiptap/core" {
|
|
|
1080
1082
|
|
|
1081
1083
|
declare module "@tiptap/core" {
|
|
1082
1084
|
interface Commands<ReturnType> {
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
src: string;
|
|
1086
|
-
}) => ReturnType;
|
|
1085
|
+
transcript: {
|
|
1086
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
1087
1087
|
};
|
|
1088
1088
|
}
|
|
1089
1089
|
}
|