@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
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: {
|
|
@@ -7770,6 +7773,11 @@ declare module "gridstack" {
|
|
|
7770
7773
|
}
|
|
7771
7774
|
|
|
7772
7775
|
|
|
7776
|
+
declare namespace Calendar {
|
|
7777
|
+
var displayName: string;
|
|
7778
|
+
}
|
|
7779
|
+
|
|
7780
|
+
|
|
7773
7781
|
declare module "@tiptap/core" {
|
|
7774
7782
|
interface Commands<ReturnType> {
|
|
7775
7783
|
aiBlock: {
|
|
@@ -7808,6 +7816,12 @@ declare module "@tiptap/core" {
|
|
|
7808
7816
|
}
|
|
7809
7817
|
|
|
7810
7818
|
|
|
7811
|
-
declare
|
|
7812
|
-
|
|
7819
|
+
declare module "@tiptap/core" {
|
|
7820
|
+
interface Commands<ReturnType> {
|
|
7821
|
+
videoEmbed: {
|
|
7822
|
+
setVideoEmbed: (options: {
|
|
7823
|
+
src: string;
|
|
7824
|
+
}) => ReturnType;
|
|
7825
|
+
};
|
|
7826
|
+
}
|
|
7813
7827
|
}
|