@factorialco/f0-react 2.32.0 → 2.32.2
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/ai.d.ts +10 -10
- package/dist/experimental.d.ts +10 -10
- package/dist/experimental.js +1 -1
- package/dist/f0.d.ts +41 -10
- package/dist/f0.js +2061 -2045
- package/dist/i18n-provider-defaults.d.ts +10 -10
- package/package.json +1 -1
|
@@ -842,11 +842,6 @@ declare module "gridstack" {
|
|
|
842
842
|
}
|
|
843
843
|
|
|
844
844
|
|
|
845
|
-
declare namespace Calendar {
|
|
846
|
-
var displayName: string;
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
|
|
850
845
|
declare module "@tiptap/core" {
|
|
851
846
|
interface Commands<ReturnType> {
|
|
852
847
|
aiBlock: {
|
|
@@ -859,9 +854,8 @@ declare module "@tiptap/core" {
|
|
|
859
854
|
|
|
860
855
|
declare module "@tiptap/core" {
|
|
861
856
|
interface Commands<ReturnType> {
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
857
|
+
moodTracker: {
|
|
858
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
865
859
|
};
|
|
866
860
|
}
|
|
867
861
|
}
|
|
@@ -869,8 +863,9 @@ declare module "@tiptap/core" {
|
|
|
869
863
|
|
|
870
864
|
declare module "@tiptap/core" {
|
|
871
865
|
interface Commands<ReturnType> {
|
|
872
|
-
|
|
873
|
-
|
|
866
|
+
enhanceHighlight: {
|
|
867
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
868
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
874
869
|
};
|
|
875
870
|
}
|
|
876
871
|
}
|
|
@@ -896,6 +891,11 @@ declare module "@tiptap/core" {
|
|
|
896
891
|
}
|
|
897
892
|
|
|
898
893
|
|
|
894
|
+
declare namespace Calendar {
|
|
895
|
+
var displayName: string;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
|
|
899
899
|
declare namespace F0GraphNodeWrapperInner {
|
|
900
900
|
var displayName: string;
|
|
901
901
|
}
|