@factorialco/f0-react 1.385.0 → 1.387.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/{DataCollectionStorageProvider-CGbqg3A9.js → DataCollectionStorageProvider-DRJ_EeV3.js} +16323 -18366
- package/dist/{F0AiChat-Ddo83UfP.js → F0AiChat-CErP7p0z.js} +39725 -36878
- package/dist/{F0HILActionConfirmation-C475SHSS.js → F0HILActionConfirmation-DKtvnJ7U.js} +156 -155
- package/dist/ai.d.ts +194 -13
- package/dist/ai.js +48 -45
- package/dist/experimental.d.ts +76 -6
- package/dist/experimental.js +267 -267
- package/dist/f0.d.ts +198 -13
- package/dist/f0.js +213 -210
- package/dist/i18n-provider-defaults.d.ts +9 -6
- package/dist/i18n-provider-defaults.js +3 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -375,9 +375,12 @@ export declare const defaultTranslations: {
|
|
|
375
375
|
readonly placeholder: "Share what didn’t work";
|
|
376
376
|
};
|
|
377
377
|
};
|
|
378
|
+
readonly dataDownloadPreview: "Preview {{shown}} of {{total}} rows — download the Excel to see all data.";
|
|
378
379
|
readonly expandChat: "Expand chat";
|
|
379
380
|
readonly collapseChat: "Collapse chat";
|
|
380
381
|
readonly ask: "Ask One";
|
|
382
|
+
readonly viewProfile: "View profile";
|
|
383
|
+
readonly tools: "Tools";
|
|
381
384
|
readonly growth: {
|
|
382
385
|
readonly demoCard: {
|
|
383
386
|
readonly title: "See {{moduleName}} in action";
|
|
@@ -662,8 +665,10 @@ declare module "@tiptap/core" {
|
|
|
662
665
|
|
|
663
666
|
declare module "@tiptap/core" {
|
|
664
667
|
interface Commands<ReturnType> {
|
|
665
|
-
|
|
666
|
-
|
|
668
|
+
videoEmbed: {
|
|
669
|
+
setVideoEmbed: (options: {
|
|
670
|
+
src: string;
|
|
671
|
+
}) => ReturnType;
|
|
667
672
|
};
|
|
668
673
|
}
|
|
669
674
|
}
|
|
@@ -671,10 +676,8 @@ declare module "@tiptap/core" {
|
|
|
671
676
|
|
|
672
677
|
declare module "@tiptap/core" {
|
|
673
678
|
interface Commands<ReturnType> {
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
src: string;
|
|
677
|
-
}) => ReturnType;
|
|
679
|
+
transcript: {
|
|
680
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
678
681
|
};
|
|
679
682
|
}
|
|
680
683
|
}
|
|
@@ -375,9 +375,12 @@ const e = {
|
|
|
375
375
|
placeholder: "Share what didn’t work"
|
|
376
376
|
}
|
|
377
377
|
},
|
|
378
|
+
dataDownloadPreview: "Preview {{shown}} of {{total}} rows — download the Excel to see all data.",
|
|
378
379
|
expandChat: "Expand chat",
|
|
379
380
|
collapseChat: "Collapse chat",
|
|
380
381
|
ask: "Ask One",
|
|
382
|
+
viewProfile: "View profile",
|
|
383
|
+
tools: "Tools",
|
|
381
384
|
growth: {
|
|
382
385
|
demoCard: {
|
|
383
386
|
title: "See {{moduleName}} in action",
|