@factorialco/f0-react 2.7.0 → 2.8.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 +12 -8
- package/dist/experimental.js +1470 -1400
- package/dist/f0.d.ts +6 -6
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -14467,9 +14467,9 @@ declare namespace Calendar {
|
|
|
14467
14467
|
|
|
14468
14468
|
declare module "@tiptap/core" {
|
|
14469
14469
|
interface Commands<ReturnType> {
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14470
|
+
aiBlock: {
|
|
14471
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
14472
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
14473
14473
|
};
|
|
14474
14474
|
}
|
|
14475
14475
|
}
|
|
@@ -14477,9 +14477,9 @@ declare module "@tiptap/core" {
|
|
|
14477
14477
|
|
|
14478
14478
|
declare module "@tiptap/core" {
|
|
14479
14479
|
interface Commands<ReturnType> {
|
|
14480
|
-
|
|
14481
|
-
|
|
14482
|
-
|
|
14480
|
+
enhanceHighlight: {
|
|
14481
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
14482
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
14483
14483
|
};
|
|
14484
14484
|
}
|
|
14485
14485
|
}
|
|
@@ -838,9 +838,9 @@ declare namespace Calendar {
|
|
|
838
838
|
|
|
839
839
|
declare module "@tiptap/core" {
|
|
840
840
|
interface Commands<ReturnType> {
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
841
|
+
aiBlock: {
|
|
842
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
843
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
844
844
|
};
|
|
845
845
|
}
|
|
846
846
|
}
|
|
@@ -848,9 +848,9 @@ declare module "@tiptap/core" {
|
|
|
848
848
|
|
|
849
849
|
declare module "@tiptap/core" {
|
|
850
850
|
interface Commands<ReturnType> {
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
851
|
+
enhanceHighlight: {
|
|
852
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
853
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
854
854
|
};
|
|
855
855
|
}
|
|
856
856
|
}
|