@factorialco/f0-react 1.362.1 → 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/{DataCollectionStorageProvider-D8t0CDK-.js → DataCollectionStorageProvider-buKfoPNx.js} +1 -1
- package/dist/{F0AiChat-CI5HI9RC.js → F0AiChat-BtIGa9o0.js} +1019 -1013
- package/dist/{F0HILActionConfirmation-CC_m8juQ.js → F0HILActionConfirmation-BgQuxt3l.js} +1 -1
- package/dist/ai.d.ts +11 -11
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +11 -11
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +107 -46
- package/dist/f0.js +2343 -2324
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/package.json +1 -1
|
@@ -611,11 +611,16 @@ declare module "gridstack" {
|
|
|
611
611
|
}
|
|
612
612
|
|
|
613
613
|
|
|
614
|
+
declare namespace Calendar {
|
|
615
|
+
var displayName: string;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
|
|
614
619
|
declare module "@tiptap/core" {
|
|
615
620
|
interface Commands<ReturnType> {
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
621
|
+
enhanceHighlight: {
|
|
622
|
+
setEnhanceHighlight: (from: number, to: number) => ReturnType;
|
|
623
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
619
624
|
};
|
|
620
625
|
}
|
|
621
626
|
}
|
|
@@ -623,9 +628,9 @@ declare module "@tiptap/core" {
|
|
|
623
628
|
|
|
624
629
|
declare module "@tiptap/core" {
|
|
625
630
|
interface Commands<ReturnType> {
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
631
|
+
aiBlock: {
|
|
632
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
|
|
633
|
+
executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
|
|
629
634
|
};
|
|
630
635
|
}
|
|
631
636
|
}
|
|
@@ -647,8 +652,3 @@ declare module "@tiptap/core" {
|
|
|
647
652
|
};
|
|
648
653
|
}
|
|
649
654
|
}
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
declare namespace Calendar {
|
|
653
|
-
var displayName: string;
|
|
654
|
-
}
|