@factorialco/f0-react 2.39.1 → 2.40.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 +6 -6
- package/dist/experimental.d.ts +6 -6
- package/dist/f0.d.ts +6 -6
- package/dist/f0.js +7151 -7122
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/package.json +1 -1
|
@@ -852,9 +852,9 @@ declare module "gridstack" {
|
|
|
852
852
|
|
|
853
853
|
declare module "@tiptap/core" {
|
|
854
854
|
interface Commands<ReturnType> {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
855
|
+
enhanceHighlight: {
|
|
856
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
857
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
858
858
|
};
|
|
859
859
|
}
|
|
860
860
|
}
|
|
@@ -862,9 +862,9 @@ declare module "@tiptap/core" {
|
|
|
862
862
|
|
|
863
863
|
declare module "@tiptap/core" {
|
|
864
864
|
interface Commands<ReturnType> {
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
865
|
+
aiBlock: {
|
|
866
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
867
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
868
868
|
};
|
|
869
869
|
}
|
|
870
870
|
}
|