@factorialco/f0-react 2.52.0 → 2.54.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-DHzu-56s.js → F0CanvasPanel-Cb-XPsWw.js} +4538 -4509
- package/dist/ai.d.ts +17 -13
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +10 -10
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +169 -13
- package/dist/f0.js +14536 -14113
- package/dist/i18n-provider-defaults.d.ts +10 -10
- package/dist/styles.css +1 -1
- package/dist/{useChatHistory-DbcUH7Tf.js → useChatHistory-K5KKfnAw.js} +2595 -2573
- package/dist/{useDataCollectionSource-BxNZJCZw.js → useDataCollectionSource-D0OxkURJ.js} +26 -25
- package/package.json +1 -1
|
@@ -869,6 +869,11 @@ declare module "gridstack" {
|
|
|
869
869
|
}
|
|
870
870
|
|
|
871
871
|
|
|
872
|
+
declare namespace Calendar {
|
|
873
|
+
var displayName: string;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
|
|
872
877
|
declare module "@tiptap/core" {
|
|
873
878
|
interface Commands<ReturnType> {
|
|
874
879
|
aiBlock: {
|
|
@@ -881,8 +886,9 @@ declare module "@tiptap/core" {
|
|
|
881
886
|
|
|
882
887
|
declare module "@tiptap/core" {
|
|
883
888
|
interface Commands<ReturnType> {
|
|
884
|
-
|
|
885
|
-
|
|
889
|
+
enhanceHighlight: {
|
|
890
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
891
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
886
892
|
};
|
|
887
893
|
}
|
|
888
894
|
}
|
|
@@ -890,9 +896,8 @@ declare module "@tiptap/core" {
|
|
|
890
896
|
|
|
891
897
|
declare module "@tiptap/core" {
|
|
892
898
|
interface Commands<ReturnType> {
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
899
|
+
moodTracker: {
|
|
900
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
896
901
|
};
|
|
897
902
|
}
|
|
898
903
|
}
|
|
@@ -918,11 +923,6 @@ declare module "@tiptap/core" {
|
|
|
918
923
|
}
|
|
919
924
|
|
|
920
925
|
|
|
921
|
-
declare namespace Calendar {
|
|
922
|
-
var displayName: string;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
|
|
926
926
|
declare namespace F0GraphNodeWrapperInner {
|
|
927
927
|
var displayName: string;
|
|
928
928
|
}
|