@factorialco/f0-react 4.28.2 → 4.29.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/ai.d.ts +7 -7
- package/dist/experimental.d.ts +7 -7
- package/dist/f0.d.ts +20 -11
- package/dist/f0.js +1890 -1849
- package/dist/i18n-provider-defaults.d.ts +7 -7
- package/package.json +1 -1
|
@@ -979,8 +979,11 @@ declare module "@tiptap/core" {
|
|
|
979
979
|
|
|
980
980
|
declare module "@tiptap/core" {
|
|
981
981
|
interface Commands<ReturnType> {
|
|
982
|
-
|
|
983
|
-
|
|
982
|
+
enhanceHighlight: {
|
|
983
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
984
|
+
placeholder?: string;
|
|
985
|
+
}) => ReturnType;
|
|
986
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
984
987
|
};
|
|
985
988
|
}
|
|
986
989
|
}
|
|
@@ -988,11 +991,8 @@ declare module "@tiptap/core" {
|
|
|
988
991
|
|
|
989
992
|
declare module "@tiptap/core" {
|
|
990
993
|
interface Commands<ReturnType> {
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
placeholder?: string;
|
|
994
|
-
}) => ReturnType;
|
|
995
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
994
|
+
moodTracker: {
|
|
995
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
996
996
|
};
|
|
997
997
|
}
|
|
998
998
|
}
|