@factorialco/f0-react 4.52.0 → 4.54.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/{ChatDocxThumbnail-ZpA0oGfg.js → ChatDocxThumbnail-DzNPNFya.js} +1 -1
- package/dist/{ChatPdfThumbnail-Inmuy7U7.js → ChatPdfThumbnail-e_xAa5BG.js} +1 -1
- package/dist/{DocumentToolbar-BYKMRth5.js → DocumentToolbar-ZnR9EUMa.js} +2 -2
- package/dist/{DocxViewer-DTyN6WkM.js → DocxViewer-B3DGLu2C.js} +3 -3
- package/dist/{F0AiProcessingOverlay-DEjwsdqP.js → F0AiProcessingOverlay-BVHAspoQ.js} +1 -1
- package/dist/{F0CanvasPanel-DkQ4xhBx.js → F0CanvasPanel-DvAledR4.js} +4432 -4458
- package/dist/{LocationMap-BiiecVq_.js → LocationMap-BeSyUnec.js} +1 -1
- package/dist/{SheetViewer-BettRk5l.js → SheetViewer-DtfcXdoa.js} +2 -2
- package/dist/{TextViewer-DkXDyzcR.js → TextViewer-Drfvy4UM.js} +2 -2
- package/dist/_commonjsHelpers-ByX85dGu.js +33 -0
- package/dist/ai.d.ts +10 -10
- package/dist/ai.js +2 -2
- package/dist/axe-mZXA-kzX.js +23823 -0
- package/dist/component-status.d.ts +24 -10
- package/dist/component-status.js +305 -100
- package/dist/{docx-preview-bIzfytWN.js → docx-preview-BaRDMyPN.js} +1 -1
- package/dist/experimental.d.ts +10 -10
- package/dist/experimental.js +7 -7
- package/dist/f0.d.ts +10 -10
- package/dist/f0.js +571 -570
- package/dist/i18n-provider-defaults.d.ts +10 -10
- package/dist/{index-C4zDor6d.js → index-BgFg3D88.js} +135 -134
- package/dist/{index-Ck1QOo1R.js → index-DYLglfsp.js} +29 -29
- package/dist/{pdfWorker-BecOMPtI.js → pdfWorker-CqQpWr5o.js} +3 -2
- package/dist/styles.css +1 -1
- package/package.json +2 -1
|
@@ -1040,11 +1040,9 @@ declare namespace Calendar {
|
|
|
1040
1040
|
|
|
1041
1041
|
declare module "@tiptap/core" {
|
|
1042
1042
|
interface Commands<ReturnType> {
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
}) => ReturnType;
|
|
1047
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
1043
|
+
aiBlock: {
|
|
1044
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
1045
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
1048
1046
|
};
|
|
1049
1047
|
}
|
|
1050
1048
|
}
|
|
@@ -1052,8 +1050,11 @@ declare module "@tiptap/core" {
|
|
|
1052
1050
|
|
|
1053
1051
|
declare module "@tiptap/core" {
|
|
1054
1052
|
interface Commands<ReturnType> {
|
|
1055
|
-
|
|
1056
|
-
|
|
1053
|
+
enhanceHighlight: {
|
|
1054
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
1055
|
+
placeholder?: string;
|
|
1056
|
+
}) => ReturnType;
|
|
1057
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
1057
1058
|
};
|
|
1058
1059
|
}
|
|
1059
1060
|
}
|
|
@@ -1061,9 +1062,8 @@ declare module "@tiptap/core" {
|
|
|
1061
1062
|
|
|
1062
1063
|
declare module "@tiptap/core" {
|
|
1063
1064
|
interface Commands<ReturnType> {
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
1065
|
+
moodTracker: {
|
|
1066
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
1067
1067
|
};
|
|
1068
1068
|
}
|
|
1069
1069
|
}
|