@factorialco/f0-react 1.371.1 → 1.372.1
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-V4evMhXj.js → DataCollectionStorageProvider-P3r2oy3e.js} +16883 -18057
- package/dist/{F0AiChat-DcL3x8bN.js → F0AiChat-CDAHnaiX.js} +328 -312
- package/dist/{F0HILActionConfirmation-P7kXyg_j.js → F0HILActionConfirmation-DK9urnzZ.js} +1 -1
- package/dist/ai.d.ts +13 -11
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +24 -67
- package/dist/experimental.js +1471 -1531
- package/dist/f0.d.ts +17 -11
- package/dist/f0.js +6222 -4944
- package/dist/i18n-provider-defaults.d.ts +13 -11
- package/dist/i18n-provider-defaults.js +2 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -517,6 +517,8 @@ export declare const defaultTranslations: {
|
|
|
517
517
|
readonly forms: {
|
|
518
518
|
readonly actionBar: {
|
|
519
519
|
readonly unsavedChanges: "You have changes pending to be saved";
|
|
520
|
+
readonly saving: "Saving...";
|
|
521
|
+
readonly saved: "Your changes have been saved";
|
|
520
522
|
readonly discard: "Discard";
|
|
521
523
|
readonly issues: {
|
|
522
524
|
readonly one: "{{count}} issue";
|
|
@@ -609,11 +611,6 @@ declare module "gridstack" {
|
|
|
609
611
|
}
|
|
610
612
|
|
|
611
613
|
|
|
612
|
-
declare namespace Calendar {
|
|
613
|
-
var displayName: string;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
|
|
617
614
|
declare module "@tiptap/core" {
|
|
618
615
|
interface Commands<ReturnType> {
|
|
619
616
|
aiBlock: {
|
|
@@ -645,10 +642,8 @@ declare module "@tiptap/core" {
|
|
|
645
642
|
|
|
646
643
|
declare module "@tiptap/core" {
|
|
647
644
|
interface Commands<ReturnType> {
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
src: string;
|
|
651
|
-
}) => ReturnType;
|
|
645
|
+
transcript: {
|
|
646
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
652
647
|
};
|
|
653
648
|
}
|
|
654
649
|
}
|
|
@@ -656,8 +651,15 @@ declare module "@tiptap/core" {
|
|
|
656
651
|
|
|
657
652
|
declare module "@tiptap/core" {
|
|
658
653
|
interface Commands<ReturnType> {
|
|
659
|
-
|
|
660
|
-
|
|
654
|
+
videoEmbed: {
|
|
655
|
+
setVideoEmbed: (options: {
|
|
656
|
+
src: string;
|
|
657
|
+
}) => ReturnType;
|
|
661
658
|
};
|
|
662
659
|
}
|
|
663
660
|
}
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
declare namespace Calendar {
|
|
664
|
+
var displayName: string;
|
|
665
|
+
}
|