@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
package/dist/f0.d.ts
CHANGED
|
@@ -2514,6 +2514,9 @@ export declare const defaultTranslations: {
|
|
|
2514
2514
|
readonly ordered: "Ordered";
|
|
2515
2515
|
readonly task: "Task";
|
|
2516
2516
|
readonly details: "Dropdown";
|
|
2517
|
+
readonly video: "Video";
|
|
2518
|
+
readonly videoUrlPrompt: "Enter a YouTube or Vimeo URL";
|
|
2519
|
+
readonly videoUrlInvalid: "Please enter a valid YouTube or Vimeo URL";
|
|
2517
2520
|
readonly link: "Link";
|
|
2518
2521
|
readonly linkPlaceholder: "Enter a link";
|
|
2519
2522
|
readonly groups: {
|
|
@@ -7808,6 +7811,17 @@ declare module "@tiptap/core" {
|
|
|
7808
7811
|
}
|
|
7809
7812
|
|
|
7810
7813
|
|
|
7814
|
+
declare module "@tiptap/core" {
|
|
7815
|
+
interface Commands<ReturnType> {
|
|
7816
|
+
videoEmbed: {
|
|
7817
|
+
setVideoEmbed: (options: {
|
|
7818
|
+
src: string;
|
|
7819
|
+
}) => ReturnType;
|
|
7820
|
+
};
|
|
7821
|
+
}
|
|
7822
|
+
}
|
|
7823
|
+
|
|
7824
|
+
|
|
7811
7825
|
declare namespace Calendar {
|
|
7812
7826
|
var displayName: string;
|
|
7813
7827
|
}
|