@factorialco/f0-react 2.49.0 → 2.50.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-D70oNR2G.js → F0CanvasPanel-BhJlROnj.js} +55 -44
- package/dist/ai.d.ts +11 -11
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +11 -11
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +67 -11
- package/dist/f0.js +14969 -14325
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-DjftH8dD.js → useChatHistory-BStmxDZN.js} +1 -1
- package/dist/{useDataCollectionSource-CDB1LCNu.js → useDataCollectionSource-wGCHvK_8.js} +1 -1
- package/package.json +2 -1
|
@@ -869,16 +869,11 @@ declare module "gridstack" {
|
|
|
869
869
|
}
|
|
870
870
|
|
|
871
871
|
|
|
872
|
-
declare namespace Calendar {
|
|
873
|
-
var displayName: string;
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
|
|
877
872
|
declare module "@tiptap/core" {
|
|
878
873
|
interface Commands<ReturnType> {
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
874
|
+
aiBlock: {
|
|
875
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
876
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
882
877
|
};
|
|
883
878
|
}
|
|
884
879
|
}
|
|
@@ -886,9 +881,9 @@ declare module "@tiptap/core" {
|
|
|
886
881
|
|
|
887
882
|
declare module "@tiptap/core" {
|
|
888
883
|
interface Commands<ReturnType> {
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
884
|
+
enhanceHighlight: {
|
|
885
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
886
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
892
887
|
};
|
|
893
888
|
}
|
|
894
889
|
}
|
|
@@ -923,6 +918,11 @@ declare module "@tiptap/core" {
|
|
|
923
918
|
}
|
|
924
919
|
|
|
925
920
|
|
|
921
|
+
declare namespace Calendar {
|
|
922
|
+
var displayName: string;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
|
|
926
926
|
declare namespace F0GraphNodeWrapperInner {
|
|
927
927
|
var displayName: string;
|
|
928
928
|
}
|