@factorialco/f0-react 2.45.0 → 2.47.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/{F0CanvasPanel-DMLQMGBW.js → F0CanvasPanel-DAS9OuMu.js} +206 -203
- package/dist/ai.d.ts +438 -14
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +13 -7
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +43 -16
- package/dist/f0.js +12530 -13235
- package/dist/i18n-provider-defaults.d.ts +7 -6
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-DvbntgsJ.js → useChatHistory-widnlpnJ.js} +4553 -3852
- package/dist/{useDataCollectionSource-iZJIN18U.js → useDataCollectionSource-RSypR7CQ.js} +1 -1
- package/package.json +1 -1
|
@@ -141,6 +141,7 @@ export declare const defaultTranslations: {
|
|
|
141
141
|
readonly save: "Save";
|
|
142
142
|
readonly send: "Send";
|
|
143
143
|
readonly cancel: "Cancel";
|
|
144
|
+
readonly ok: "Ok";
|
|
144
145
|
readonly delete: "Delete";
|
|
145
146
|
readonly copy: "Copy";
|
|
146
147
|
readonly paste: "Paste";
|
|
@@ -852,9 +853,9 @@ declare module "gridstack" {
|
|
|
852
853
|
|
|
853
854
|
declare module "@tiptap/core" {
|
|
854
855
|
interface Commands<ReturnType> {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
856
|
+
enhanceHighlight: {
|
|
857
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
858
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
858
859
|
};
|
|
859
860
|
}
|
|
860
861
|
}
|
|
@@ -862,9 +863,9 @@ declare module "@tiptap/core" {
|
|
|
862
863
|
|
|
863
864
|
declare module "@tiptap/core" {
|
|
864
865
|
interface Commands<ReturnType> {
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
866
|
+
aiBlock: {
|
|
867
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
868
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
868
869
|
};
|
|
869
870
|
}
|
|
870
871
|
}
|