@factorialco/f0-react 1.362.2 → 1.362.3
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 +102 -41
- package/dist/f0.js +2343 -2324
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/package.json +1 -1
|
@@ -618,9 +618,9 @@ declare namespace Calendar {
|
|
|
618
618
|
|
|
619
619
|
declare module "@tiptap/core" {
|
|
620
620
|
interface Commands<ReturnType> {
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
621
|
+
enhanceHighlight: {
|
|
622
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
623
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
624
624
|
};
|
|
625
625
|
}
|
|
626
626
|
}
|
|
@@ -628,9 +628,9 @@ declare module "@tiptap/core" {
|
|
|
628
628
|
|
|
629
629
|
declare module "@tiptap/core" {
|
|
630
630
|
interface Commands<ReturnType> {
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
631
|
+
aiBlock: {
|
|
632
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
633
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
634
634
|
};
|
|
635
635
|
}
|
|
636
636
|
}
|