@factorialco/f0-react 2.21.0 → 2.22.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/ai.d.ts +11 -11
- package/dist/experimental.d.ts +11 -11
- package/dist/f0.d.ts +12 -12
- package/dist/f0.js +211 -202
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -838,11 +838,6 @@ declare module "gridstack" {
|
|
|
838
838
|
}
|
|
839
839
|
|
|
840
840
|
|
|
841
|
-
declare namespace Calendar {
|
|
842
|
-
var displayName: string;
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
|
|
846
841
|
declare module "@tiptap/core" {
|
|
847
842
|
interface Commands<ReturnType> {
|
|
848
843
|
aiBlock: {
|
|
@@ -874,8 +869,10 @@ declare module "@tiptap/core" {
|
|
|
874
869
|
|
|
875
870
|
declare module "@tiptap/core" {
|
|
876
871
|
interface Commands<ReturnType> {
|
|
877
|
-
|
|
878
|
-
|
|
872
|
+
videoEmbed: {
|
|
873
|
+
setVideoEmbed: (options: {
|
|
874
|
+
src: string;
|
|
875
|
+
}) => ReturnType;
|
|
879
876
|
};
|
|
880
877
|
}
|
|
881
878
|
}
|
|
@@ -883,15 +880,18 @@ declare module "@tiptap/core" {
|
|
|
883
880
|
|
|
884
881
|
declare module "@tiptap/core" {
|
|
885
882
|
interface Commands<ReturnType> {
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
src: string;
|
|
889
|
-
}) => ReturnType;
|
|
883
|
+
transcript: {
|
|
884
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
890
885
|
};
|
|
891
886
|
}
|
|
892
887
|
}
|
|
893
888
|
|
|
894
889
|
|
|
890
|
+
declare namespace Calendar {
|
|
891
|
+
var displayName: string;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
|
|
895
895
|
declare namespace F0GraphNodeWrapperInner {
|
|
896
896
|
var displayName: string;
|
|
897
897
|
}
|