@factorialco/f0-react 2.45.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-DMLQMGBW.js → F0CanvasPanel-CTpW3vtK.js} +171 -171
- package/dist/ai.d.ts +442 -19
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +11 -11
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +40 -19
- package/dist/f0.js +12530 -13235
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/dist/{useChatHistory-DvbntgsJ.js → useChatHistory-CyZmi4kr.js} +4553 -3852
- package/dist/{useDataCollectionSource-iZJIN18U.js → useDataCollectionSource-DspGeRMB.js} +1 -1
- package/package.json +1 -1
|
@@ -850,11 +850,16 @@ declare module "gridstack" {
|
|
|
850
850
|
}
|
|
851
851
|
|
|
852
852
|
|
|
853
|
+
declare namespace Calendar {
|
|
854
|
+
var displayName: string;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
|
|
853
858
|
declare module "@tiptap/core" {
|
|
854
859
|
interface Commands<ReturnType> {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
860
|
+
enhanceHighlight: {
|
|
861
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
862
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
858
863
|
};
|
|
859
864
|
}
|
|
860
865
|
}
|
|
@@ -862,9 +867,9 @@ declare module "@tiptap/core" {
|
|
|
862
867
|
|
|
863
868
|
declare module "@tiptap/core" {
|
|
864
869
|
interface Commands<ReturnType> {
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
870
|
+
aiBlock: {
|
|
871
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
872
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
868
873
|
};
|
|
869
874
|
}
|
|
870
875
|
}
|
|
@@ -899,11 +904,6 @@ declare module "@tiptap/core" {
|
|
|
899
904
|
}
|
|
900
905
|
|
|
901
906
|
|
|
902
|
-
declare namespace Calendar {
|
|
903
|
-
var displayName: string;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
|
|
907
907
|
declare namespace F0GraphNodeWrapperInner {
|
|
908
908
|
var displayName: string;
|
|
909
909
|
}
|