@factorialco/f0-react 2.20.1 → 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/{F0AiTableCard-8ATpfNg4.js → F0AiTableCard-BzXULBvr.js} +2 -1
- package/dist/{F0CanvasPanel-DNz4nej5.js → F0CanvasPanel-v9tjaOnW.js} +26799 -26858
- package/dist/F0CanvasPanel.css +1 -1
- package/dist/ai.d.ts +52 -28
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +25 -14
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +53 -29
- package/dist/f0.js +216 -207
- package/dist/i18n-provider-defaults.d.ts +12 -12
- package/dist/i18n-provider-defaults.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/{useDataCollectionSource-Dutz5gMZ.js → useDataCollectionSource-BzwXcIpi.js} +1 -1
- package/package.json +1 -1
|
@@ -379,7 +379,7 @@ export declare const defaultTranslations: {
|
|
|
379
379
|
readonly stopAnswerGeneration: "Stop generating";
|
|
380
380
|
readonly responseStopped: "You stopped this response";
|
|
381
381
|
readonly sendMessage: "Send message";
|
|
382
|
-
readonly thoughtsGroupTitle: "
|
|
382
|
+
readonly thoughtsGroupTitle: "Reasoning";
|
|
383
383
|
readonly resourcesGroupTitle: "Resources";
|
|
384
384
|
readonly thinking: "Thinking...";
|
|
385
385
|
readonly feedbackModal: {
|
|
@@ -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
|
}
|
|
@@ -379,7 +379,7 @@ const e = {
|
|
|
379
379
|
stopAnswerGeneration: "Stop generating",
|
|
380
380
|
responseStopped: "You stopped this response",
|
|
381
381
|
sendMessage: "Send message",
|
|
382
|
-
thoughtsGroupTitle: "
|
|
382
|
+
thoughtsGroupTitle: "Reasoning",
|
|
383
383
|
resourcesGroupTitle: "Resources",
|
|
384
384
|
thinking: "Thinking...",
|
|
385
385
|
feedbackModal: {
|