@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/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
  }