@factorialco/f0-react 1.369.4 → 1.370.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-DF4gU29_.js → DataCollectionStorageProvider-DNMx-nbW.js} +3434 -3421
- package/dist/DataCollectionStorageProvider.css +1 -1
- package/dist/{F0AiChat-YtnHxZff.js → F0AiChat-DTbfQrsx.js} +177 -176
- package/dist/{F0HILActionConfirmation-C8Qxo7uX.js → F0HILActionConfirmation-X_L4C1FJ.js} +1 -1
- package/dist/ai.d.ts +14 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.css +1 -1
- package/dist/experimental.d.ts +76 -1
- package/dist/experimental.js +5139 -4971
- package/dist/f0.d.ts +14 -0
- package/dist/f0.js +573 -566
- package/dist/i18n-provider-defaults.d.ts +14 -0
- package/dist/i18n-provider-defaults.js +3 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -493,6 +493,9 @@ export declare const defaultTranslations: {
|
|
|
493
493
|
readonly ordered: "Ordered";
|
|
494
494
|
readonly task: "Task";
|
|
495
495
|
readonly details: "Dropdown";
|
|
496
|
+
readonly video: "Video";
|
|
497
|
+
readonly videoUrlPrompt: "Enter a YouTube or Vimeo URL";
|
|
498
|
+
readonly videoUrlInvalid: "Please enter a valid YouTube or Vimeo URL";
|
|
496
499
|
readonly link: "Link";
|
|
497
500
|
readonly linkPlaceholder: "Enter a link";
|
|
498
501
|
readonly groups: {
|
|
@@ -644,6 +647,17 @@ declare module "@tiptap/core" {
|
|
|
644
647
|
}
|
|
645
648
|
|
|
646
649
|
|
|
650
|
+
declare module "@tiptap/core" {
|
|
651
|
+
interface Commands<ReturnType> {
|
|
652
|
+
videoEmbed: {
|
|
653
|
+
setVideoEmbed: (options: {
|
|
654
|
+
src: string;
|
|
655
|
+
}) => ReturnType;
|
|
656
|
+
};
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
|
|
647
661
|
declare namespace Calendar {
|
|
648
662
|
var displayName: string;
|
|
649
663
|
}
|
|
@@ -493,6 +493,9 @@ const e = {
|
|
|
493
493
|
ordered: "Ordered",
|
|
494
494
|
task: "Task",
|
|
495
495
|
details: "Dropdown",
|
|
496
|
+
video: "Video",
|
|
497
|
+
videoUrlPrompt: "Enter a YouTube or Vimeo URL",
|
|
498
|
+
videoUrlInvalid: "Please enter a valid YouTube or Vimeo URL",
|
|
496
499
|
link: "Link",
|
|
497
500
|
linkPlaceholder: "Enter a link",
|
|
498
501
|
groups: {
|