@factorialco/f0-react 1.369.3 → 1.370.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-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 +16 -2
- package/dist/ai.js +2 -2
- package/dist/experimental.css +1 -1
- package/dist/experimental.d.ts +78 -3
- package/dist/experimental.js +5139 -4971
- package/dist/f0.d.ts +16 -2
- package/dist/f0.js +505 -498
- package/dist/i18n-provider-defaults.d.ts +16 -2
- 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: {
|
|
@@ -606,6 +609,11 @@ declare module "gridstack" {
|
|
|
606
609
|
}
|
|
607
610
|
|
|
608
611
|
|
|
612
|
+
declare namespace Calendar {
|
|
613
|
+
var displayName: string;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
|
|
609
617
|
declare module "@tiptap/core" {
|
|
610
618
|
interface Commands<ReturnType> {
|
|
611
619
|
aiBlock: {
|
|
@@ -644,6 +652,12 @@ declare module "@tiptap/core" {
|
|
|
644
652
|
}
|
|
645
653
|
|
|
646
654
|
|
|
647
|
-
declare
|
|
648
|
-
|
|
655
|
+
declare module "@tiptap/core" {
|
|
656
|
+
interface Commands<ReturnType> {
|
|
657
|
+
videoEmbed: {
|
|
658
|
+
setVideoEmbed: (options: {
|
|
659
|
+
src: string;
|
|
660
|
+
}) => ReturnType;
|
|
661
|
+
};
|
|
662
|
+
}
|
|
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: {
|