@factorialco/f0-react 2.2.0 → 2.4.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/{types-zUkcMLoO.js → F0AiProposalCard-pqQaiKFp.js} +7855 -7775
- package/dist/ai.d.ts +58 -13
- package/dist/ai.js +21 -20
- package/dist/experimental.d.ts +13 -13
- package/dist/f0.d.ts +87 -13
- package/dist/f0.js +1210 -1152
- package/dist/i18n-provider-defaults.d.ts +13 -13
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -831,6 +831,11 @@ declare module "gridstack" {
|
|
|
831
831
|
}
|
|
832
832
|
|
|
833
833
|
|
|
834
|
+
declare namespace Calendar {
|
|
835
|
+
var displayName: string;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
|
|
834
839
|
declare module "@tiptap/core" {
|
|
835
840
|
interface Commands<ReturnType> {
|
|
836
841
|
aiBlock: {
|
|
@@ -853,8 +858,8 @@ declare module "@tiptap/core" {
|
|
|
853
858
|
|
|
854
859
|
declare module "@tiptap/core" {
|
|
855
860
|
interface Commands<ReturnType> {
|
|
856
|
-
|
|
857
|
-
|
|
861
|
+
moodTracker: {
|
|
862
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
858
863
|
};
|
|
859
864
|
}
|
|
860
865
|
}
|
|
@@ -862,10 +867,8 @@ declare module "@tiptap/core" {
|
|
|
862
867
|
|
|
863
868
|
declare module "@tiptap/core" {
|
|
864
869
|
interface Commands<ReturnType> {
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
src: string;
|
|
868
|
-
}) => ReturnType;
|
|
870
|
+
transcript: {
|
|
871
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
869
872
|
};
|
|
870
873
|
}
|
|
871
874
|
}
|
|
@@ -873,13 +876,10 @@ declare module "@tiptap/core" {
|
|
|
873
876
|
|
|
874
877
|
declare module "@tiptap/core" {
|
|
875
878
|
interface Commands<ReturnType> {
|
|
876
|
-
|
|
877
|
-
|
|
879
|
+
videoEmbed: {
|
|
880
|
+
setVideoEmbed: (options: {
|
|
881
|
+
src: string;
|
|
882
|
+
}) => ReturnType;
|
|
878
883
|
};
|
|
879
884
|
}
|
|
880
885
|
}
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
declare namespace Calendar {
|
|
884
|
-
var displayName: string;
|
|
885
|
-
}
|