@factorialco/f0-react 1.390.0 → 1.390.2
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-DliGArb_.js → DataCollectionStorageProvider-6el79_MC.js} +3018 -3008
- package/dist/ai.d.ts +11 -11
- package/dist/experimental.d.ts +16 -11
- package/dist/experimental.js +2 -2
- package/dist/f0.d.ts +11 -11
- package/dist/f0.js +3275 -3175
- package/dist/i18n-provider-defaults.d.ts +11 -11
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -645,11 +645,6 @@ declare module "gridstack" {
|
|
|
645
645
|
}
|
|
646
646
|
|
|
647
647
|
|
|
648
|
-
declare namespace Calendar {
|
|
649
|
-
var displayName: string;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
|
|
653
648
|
declare module "@tiptap/core" {
|
|
654
649
|
interface Commands<ReturnType> {
|
|
655
650
|
aiBlock: {
|
|
@@ -681,8 +676,10 @@ declare module "@tiptap/core" {
|
|
|
681
676
|
|
|
682
677
|
declare module "@tiptap/core" {
|
|
683
678
|
interface Commands<ReturnType> {
|
|
684
|
-
|
|
685
|
-
|
|
679
|
+
videoEmbed: {
|
|
680
|
+
setVideoEmbed: (options: {
|
|
681
|
+
src: string;
|
|
682
|
+
}) => ReturnType;
|
|
686
683
|
};
|
|
687
684
|
}
|
|
688
685
|
}
|
|
@@ -690,10 +687,13 @@ declare module "@tiptap/core" {
|
|
|
690
687
|
|
|
691
688
|
declare module "@tiptap/core" {
|
|
692
689
|
interface Commands<ReturnType> {
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
src: string;
|
|
696
|
-
}) => ReturnType;
|
|
690
|
+
transcript: {
|
|
691
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
697
692
|
};
|
|
698
693
|
}
|
|
699
694
|
}
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
declare namespace Calendar {
|
|
698
|
+
var displayName: string;
|
|
699
|
+
}
|