@factorialco/f0-react 2.36.0 → 2.37.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-CzqKtOrT.js → F0CanvasPanel-BErabj-B.js} +6055 -6047
- package/dist/ai.d.ts +6 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +27 -6
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +122 -6
- package/dist/f0.js +532 -524
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-CyCXSXX9.js → useChatHistory-DBzFU3JU.js} +2 -2
- package/dist/{useDataCollectionSource-Bp6MCLzM.js → useDataCollectionSource-O4gVVcoQ.js} +9882 -9657
- package/package.json +1 -1
|
@@ -849,9 +849,9 @@ declare namespace Calendar {
|
|
|
849
849
|
|
|
850
850
|
declare module "@tiptap/core" {
|
|
851
851
|
interface Commands<ReturnType> {
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
852
|
+
aiBlock: {
|
|
853
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
854
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
855
855
|
};
|
|
856
856
|
}
|
|
857
857
|
}
|
|
@@ -859,9 +859,9 @@ declare module "@tiptap/core" {
|
|
|
859
859
|
|
|
860
860
|
declare module "@tiptap/core" {
|
|
861
861
|
interface Commands<ReturnType> {
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
862
|
+
enhanceHighlight: {
|
|
863
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
864
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
865
865
|
};
|
|
866
866
|
}
|
|
867
867
|
}
|