@factorialco/f0-react 2.28.0 → 2.28.2
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-5xCiLQgH.js → F0CanvasPanel-CKuB_a-C.js} +25795 -24160
- package/dist/ai.d.ts +34 -15
- package/dist/ai.js +15 -14
- package/dist/experimental.d.ts +23 -15
- package/dist/experimental.js +141 -141
- package/dist/f0.d.ts +34 -15
- package/dist/f0.js +230 -229
- package/dist/i18n-provider-defaults.d.ts +16 -15
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-D6KnQGF3.js → useChatHistory-DHc7fgQg.js} +4796 -3950
- package/dist/{useDataCollectionSource-DtX_WySE.js → useDataCollectionSource-DnxSvCSr.js} +12780 -14389
- package/package.json +1 -1
|
@@ -474,6 +474,7 @@ export declare const defaultTranslations: {
|
|
|
474
474
|
readonly attachFile: "Attach file";
|
|
475
475
|
readonly removeFile: "Remove";
|
|
476
476
|
readonly fileUploadError: "Upload failed";
|
|
477
|
+
readonly fileUploadBlockedSubmit: "Your message wasn't sent because one of the attachments failed to upload. Remove it or retry.";
|
|
477
478
|
readonly tooManyFilesError: "You can attach up to {{maxFiles}} files at once";
|
|
478
479
|
readonly dropFilesHere: "Drop your files here";
|
|
479
480
|
readonly reply: "Reply";
|
|
@@ -841,13 +842,8 @@ declare module "gridstack" {
|
|
|
841
842
|
}
|
|
842
843
|
|
|
843
844
|
|
|
844
|
-
declare
|
|
845
|
-
|
|
846
|
-
aiBlock: {
|
|
847
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
848
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
849
|
-
};
|
|
850
|
-
}
|
|
845
|
+
declare namespace Calendar {
|
|
846
|
+
var displayName: string;
|
|
851
847
|
}
|
|
852
848
|
|
|
853
849
|
|
|
@@ -863,8 +859,9 @@ declare module "@tiptap/core" {
|
|
|
863
859
|
|
|
864
860
|
declare module "@tiptap/core" {
|
|
865
861
|
interface Commands<ReturnType> {
|
|
866
|
-
|
|
867
|
-
|
|
862
|
+
aiBlock: {
|
|
863
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
864
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
868
865
|
};
|
|
869
866
|
}
|
|
870
867
|
}
|
|
@@ -872,10 +869,8 @@ declare module "@tiptap/core" {
|
|
|
872
869
|
|
|
873
870
|
declare module "@tiptap/core" {
|
|
874
871
|
interface Commands<ReturnType> {
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
src: string;
|
|
878
|
-
}) => ReturnType;
|
|
872
|
+
moodTracker: {
|
|
873
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
879
874
|
};
|
|
880
875
|
}
|
|
881
876
|
}
|
|
@@ -890,8 +885,14 @@ declare module "@tiptap/core" {
|
|
|
890
885
|
}
|
|
891
886
|
|
|
892
887
|
|
|
893
|
-
declare
|
|
894
|
-
|
|
888
|
+
declare module "@tiptap/core" {
|
|
889
|
+
interface Commands<ReturnType> {
|
|
890
|
+
videoEmbed: {
|
|
891
|
+
setVideoEmbed: (options: {
|
|
892
|
+
src: string;
|
|
893
|
+
}) => ReturnType;
|
|
894
|
+
};
|
|
895
|
+
}
|
|
895
896
|
}
|
|
896
897
|
|
|
897
898
|
|
|
@@ -474,6 +474,7 @@ const e = {
|
|
|
474
474
|
attachFile: "Attach file",
|
|
475
475
|
removeFile: "Remove",
|
|
476
476
|
fileUploadError: "Upload failed",
|
|
477
|
+
fileUploadBlockedSubmit: "Your message wasn't sent because one of the attachments failed to upload. Remove it or retry.",
|
|
477
478
|
tooManyFilesError: "You can attach up to {{maxFiles}} files at once",
|
|
478
479
|
dropFilesHere: "Drop your files here",
|
|
479
480
|
reply: "Reply",
|