@factorialco/f0-react 1.418.1 → 1.420.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/{F0HILActionConfirmation-e3fz8fma.js → F0HILActionConfirmation-DmSwzvkv.js} +1 -1
- package/dist/ai.d.ts +7 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +12 -6
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +145 -11
- package/dist/f0.js +5264 -5072
- package/dist/i18n-provider-defaults.d.ts +7 -6
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/{index-uBFHZ597.js → index-BVculwZa.js} +1513 -1499
- package/dist/{registry-QvKnuacs.js → registry-BQtwbAA5.js} +12115 -12073
- package/dist/styles.css +1 -1
- package/icons/app/Marker.d.ts +4 -0
- package/icons/app/Marker.d.ts.map +1 -0
- package/icons/app/Marker.js +5 -0
- package/icons/app/Multitask.d.ts +4 -0
- package/icons/app/Multitask.d.ts.map +1 -0
- package/icons/app/Multitask.js +5 -0
- package/icons/app/index.d.ts +2 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +2 -0
- package/package.json +2 -2
|
@@ -618,6 +618,7 @@ export declare const defaultTranslations: {
|
|
|
618
618
|
readonly fileTooLarge: "File exceeds {{maxSize}} MB limit";
|
|
619
619
|
readonly invalidFileType: "File type not accepted. Accepted formats: {{types}}";
|
|
620
620
|
};
|
|
621
|
+
readonly moreInformation: "More information";
|
|
621
622
|
readonly validation: {
|
|
622
623
|
readonly required: "This field is required";
|
|
623
624
|
readonly invalidType: "Invalid value";
|
|
@@ -741,8 +742,10 @@ declare module "@tiptap/core" {
|
|
|
741
742
|
|
|
742
743
|
declare module "@tiptap/core" {
|
|
743
744
|
interface Commands<ReturnType> {
|
|
744
|
-
|
|
745
|
-
|
|
745
|
+
videoEmbed: {
|
|
746
|
+
setVideoEmbed: (options: {
|
|
747
|
+
src: string;
|
|
748
|
+
}) => ReturnType;
|
|
746
749
|
};
|
|
747
750
|
}
|
|
748
751
|
}
|
|
@@ -750,10 +753,8 @@ declare module "@tiptap/core" {
|
|
|
750
753
|
|
|
751
754
|
declare module "@tiptap/core" {
|
|
752
755
|
interface Commands<ReturnType> {
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
src: string;
|
|
756
|
-
}) => ReturnType;
|
|
756
|
+
transcript: {
|
|
757
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
757
758
|
};
|
|
758
759
|
}
|
|
759
760
|
}
|
|
@@ -618,6 +618,7 @@ const e = {
|
|
|
618
618
|
fileTooLarge: "File exceeds {{maxSize}} MB limit",
|
|
619
619
|
invalidFileType: "File type not accepted. Accepted formats: {{types}}"
|
|
620
620
|
},
|
|
621
|
+
moreInformation: "More information",
|
|
621
622
|
validation: {
|
|
622
623
|
required: "This field is required",
|
|
623
624
|
invalidType: "Invalid value",
|