@factorialco/f0-react 2.44.0 → 2.46.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-Czxg0RlQ.js → F0CanvasPanel-CTpW3vtK.js} +20614 -20357
- package/dist/ai.d.ts +437 -14
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +22 -6
- package/dist/experimental.js +296 -296
- package/dist/f0.d.ts +174 -14
- package/dist/f0.js +9787 -9930
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-4yObgxX5.js → useChatHistory-CyZmi4kr.js} +4500 -3799
- package/dist/{useDataCollectionSource-Bxbwl5Iu.js → useDataCollectionSource-DspGeRMB.js} +7066 -7315
- package/package.json +1 -1
|
@@ -857,9 +857,9 @@ declare namespace Calendar {
|
|
|
857
857
|
|
|
858
858
|
declare module "@tiptap/core" {
|
|
859
859
|
interface Commands<ReturnType> {
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
860
|
+
enhanceHighlight: {
|
|
861
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
862
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
863
863
|
};
|
|
864
864
|
}
|
|
865
865
|
}
|
|
@@ -867,9 +867,9 @@ declare module "@tiptap/core" {
|
|
|
867
867
|
|
|
868
868
|
declare module "@tiptap/core" {
|
|
869
869
|
interface Commands<ReturnType> {
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
870
|
+
aiBlock: {
|
|
871
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
872
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
873
873
|
};
|
|
874
874
|
}
|
|
875
875
|
}
|