@factorialco/f0-react 1.414.0 → 1.415.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/F0AiChat-CrcLUV-I.js +63788 -0
- package/dist/F0AiChat.css +1 -1
- package/dist/{F0AnalyticsDashboard-Doa70ufI.js → F0AnalyticsDashboard-BhvG-yU1.js} +2 -2
- package/dist/F0ChatDashboard.d.ts +11 -11
- package/dist/F0ChatDashboard.js +1 -1
- package/dist/{F0HILActionConfirmation-BvAjbJKj.js → F0HILActionConfirmation-Bu877U3G.js} +35 -35
- package/dist/{F0Input-C9w04Jpr.js → F0Input-Ctwd5zZH.js} +23551 -21684
- package/dist/ai.d.ts +40 -11
- package/dist/ai.js +42 -38
- package/dist/experimental.d.ts +11 -11
- package/dist/experimental.js +402 -402
- package/dist/f0.d.ts +504 -25
- package/dist/f0.js +4313 -11766
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/dist/index-BZMnPkIB.js +22909 -0
- package/dist/styles.css +1 -1
- package/dist/useDataCollectionSource-BH2-U4PN.js +8206 -0
- package/package.json +2 -1
- package/dist/F0AiChat-CBy7rZCW.js +0 -29274
- package/dist/index-C0vtKpW9.js +0 -48076
- package/dist/index.css +0 -1
- package/dist/useDataCollectionSource-CzKsWqw5.js +0 -10111
|
@@ -697,11 +697,6 @@ declare module "gridstack" {
|
|
|
697
697
|
}
|
|
698
698
|
|
|
699
699
|
|
|
700
|
-
declare namespace Calendar {
|
|
701
|
-
var displayName: string;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
|
|
705
700
|
declare module "@tiptap/core" {
|
|
706
701
|
interface Commands<ReturnType> {
|
|
707
702
|
aiBlock: {
|
|
@@ -733,10 +728,8 @@ declare module "@tiptap/core" {
|
|
|
733
728
|
|
|
734
729
|
declare module "@tiptap/core" {
|
|
735
730
|
interface Commands<ReturnType> {
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
src: string;
|
|
739
|
-
}) => ReturnType;
|
|
731
|
+
transcript: {
|
|
732
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
740
733
|
};
|
|
741
734
|
}
|
|
742
735
|
}
|
|
@@ -744,8 +737,15 @@ declare module "@tiptap/core" {
|
|
|
744
737
|
|
|
745
738
|
declare module "@tiptap/core" {
|
|
746
739
|
interface Commands<ReturnType> {
|
|
747
|
-
|
|
748
|
-
|
|
740
|
+
videoEmbed: {
|
|
741
|
+
setVideoEmbed: (options: {
|
|
742
|
+
src: string;
|
|
743
|
+
}) => ReturnType;
|
|
749
744
|
};
|
|
750
745
|
}
|
|
751
746
|
}
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
declare namespace Calendar {
|
|
750
|
+
var displayName: string;
|
|
751
|
+
}
|