@factorialco/f0-react 2.2.0 → 2.3.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 +8 -8
- package/dist/experimental.d.ts +8 -8
- package/dist/f0.d.ts +41 -8
- package/dist/f0.js +1209 -1152
- package/dist/i18n-provider-defaults.d.ts +8 -8
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -853,8 +853,8 @@ declare module "@tiptap/core" {
|
|
|
853
853
|
|
|
854
854
|
declare module "@tiptap/core" {
|
|
855
855
|
interface Commands<ReturnType> {
|
|
856
|
-
|
|
857
|
-
|
|
856
|
+
moodTracker: {
|
|
857
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
858
858
|
};
|
|
859
859
|
}
|
|
860
860
|
}
|
|
@@ -862,10 +862,8 @@ declare module "@tiptap/core" {
|
|
|
862
862
|
|
|
863
863
|
declare module "@tiptap/core" {
|
|
864
864
|
interface Commands<ReturnType> {
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
src: string;
|
|
868
|
-
}) => ReturnType;
|
|
865
|
+
transcript: {
|
|
866
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
869
867
|
};
|
|
870
868
|
}
|
|
871
869
|
}
|
|
@@ -873,8 +871,10 @@ declare module "@tiptap/core" {
|
|
|
873
871
|
|
|
874
872
|
declare module "@tiptap/core" {
|
|
875
873
|
interface Commands<ReturnType> {
|
|
876
|
-
|
|
877
|
-
|
|
874
|
+
videoEmbed: {
|
|
875
|
+
setVideoEmbed: (options: {
|
|
876
|
+
src: string;
|
|
877
|
+
}) => ReturnType;
|
|
878
878
|
};
|
|
879
879
|
}
|
|
880
880
|
}
|